*{
    box-sizing: border-box;
}


body {

    font-family: 'Times New Roman', Times, serif;
    font-weight:bolder;
    background-image: url(asset/image/lanterns.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;  
}

#page {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

header {
    text-align: center;
    font-size: xx-large;
    font-weight: bolder;
    color: rgb(0, 70, 70);
    background-color: #d2b48c;
}

.padding {
    background-color: #aa95ab;
    padding: 50px;
    
}

.centered {
    width: 60%;
    margin: 0 auto;
    border-radius: 15px;
}



h2 {
    text-align: center;
    font-size: xx-large;
    font-weight: bolder;
    color: rgb(0, 70, 70);
}

.assignments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
}

ul {
    text-align: center;   
}

.list a {
    font-size: large;
    font-weight: lighter;
    color: black;
}

li {
    list-style: none;
}

footer {
    text-align: center;
    font-size: large;
    font-weight: bolder;
    background-color: #d2b48c;
}