* {
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #002244;
    margin: 0;
    padding: 0
}

.container {
    background-color: burlywood;
    padding: 10px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 0 8px brown;
}

header ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px

}

h1{
    padding: 5px 20px;
    font-size: 1.5rem;
    font-size: 1.2rem;

}

header ul a {
    color: grey;
    font-size: 1rem;
}

header a:hover{
    text-decoration:underline;
}



ul li {
    list-style-type: none;
}

ul a {
    text-decoration: none;
    color: #800000
}

ul a:hover{
    text-decoration: underline;
}


p {
    padding: 20px
}

#quiz {
    color: #800000;
    text-decoration: none;
}
#quiz:hover{
    color: rgb(155, 31, 31);
}

.low {
    margin-top: 0;
    margin-bottom: -35px
}

@media only screen and (max-width: 768px) {
    .container {
        width: 80%;
        max-width: 400px;
        min-height: 80px;  
        /* margin: 20px */
      }

    h1{
        margin-bottom: -25px;
        margin-top: 10px;
    }

}


