body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("images/great-wall.jpg");
    background-size: cover;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.content-window2{
    width: 90%;
    height: 90%;
    background-color: lightgrey;
    border-radius: 12px;
    border: 2px solid black;
}

.content-window {
    width: 80%;
    height: 80%;
    background-color: lightcoral;
    border-radius: 12px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*description of character in registration page */
#description {
    width: 100%;
    margin-top: 10px;
}

a {
    margin-top: 24px;
    font-size: 20px;
}

#world-selection {
    width: 50%;
    height: 60%;
    border-radius: 12px;
    background-color: lightcoral;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;   
}

#world-selection-body {
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    margin-top: 180px;
}

#createAssignment input,
#createAssignment select {
    margin-top: 20px;
    margin-bottom: 50px;
}

#assignmentButtons button{
    margin-top: 10px;
    margin-right: 10px;
    margin-left:10px;
}

#assignmentName h5{
    margin-top: 24px;
}