* {
    box-sizing: border-box;
}

body {
    font-family: Arial;
    margin: 0 1%;
    background-color: rgb(250, 249, 249);
    color: white;
    font-family: 'VT323', monospace;
    background-image: url(https://freesvg.org/img/20x20sqaures.png);
  }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid rgb(255, 251, 251);
    background-color: black;
    padding: 0px 20px;
    /* height: 10vh; */
}

header a {
    text-decoration: none;
    font-size: 1.5em;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    background-color: black;
    min-height: 100vh;
    width: 100%;
    
}

.card {
    margin: 5%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 600px;
    width: 600px;
    border: 6px solid #F60A4D;
    border-radius: 30px;
    box-shadow: 6px 6px 20px white,
                -6px -6px 20px white;
}               

#question-content {
    font-size: 1.8em;
    text-align: center;
    margin: 10px;
    
}


.card-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 3px dashed white;
    padding-bottom: 10px;
}
.card-content {
    height: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-self: flex-start;
    font-size: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 3px;
}

p {
    font-size: 2rem;
}

button {
    background-color: black;
    color: white;
    font-family: inherit;
    font-size: 2.5rem;
    border: 3px solid white;
    padding: .2em;
    border-radius: 10px;
}

button:hover {
    font-size: 2.7rem;
}

.card-content ol {
    font-size: 1.75rem;
    margin-top: 80px;
    text-align: start;
}

li {
    border: 4px solid black;
    padding: 5px;
    border-radius: 10px;
    margin: 20px 0px;
    font-size: 2.6rem;
}

li:hover {
    border-color: white;
}

form {
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.submit-bttn {
    margin-top: 20px
}

.score-table {
    margin: 20px;
    align-self: center;
}

th {
    font-size: 2.7rem;
    text-decoration: none;
    font-weight: lighter;
    margin: 20px;
    padding: 10px;
    border-bottom: 2px dashed white;
}

td {
    font-size: 2rem;
}