*{
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #00648E;
    min-height: 100vh;
}

a {
    color: #00354B;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
}

main {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

main a {
    width: 100%;
    position: relative;
}

.questionContainer {
    padding: 10px;
    background-color: #fff;
    width: 100%;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    width: 100%;
    color: #fff;
}

.questionContainer h3{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    width: 100%;
    color: #00648E;
}

@media (max-height: 780px) {
    main {
        width: 90%;
    }
}