* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Alata", sans-serif;
}

body {
    background-color: white;
    margin-bottom: 50px;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

/*----FOOTER-----*/

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #21522f;
    color: rgb(255, 255, 255);
    padding: 10px;
    margin-top: 90x;
}

/* ------ NAVBAR ------- */

nav {
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: #21522f;
    opacity: 1;
    padding: 10px 20px;
    height: 80px;
}

.logo_container {
    margin: 10px;
    display: flex;
    align-items: center;
    position: fixed;
}

.logo_container img {
    width: 50x;
    height: 50px;
    display: inline-block;
}

.logo_name {
    font-size: 40px;
    color: #FFA500;
    margin-left: 15px; 
    font-weight: bold;
    display: inline-block;
    font-family: "Delicious Handrawn", cursive;
    font-weight: 400;
    font-style: normal;
    
}

ul {
    padding: 0;
    list-style: none;
    display: flex; 
    align-items: center;
    margin: 0;
}

li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    text-align: center;;
    font-size: 22px;
    margin-right: 60px;
}


a:hover {
    color: #f0f0f0;
    background: gray;
}

#cont {
    width: 100vw;
    min-height: 100vh;
    margin: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    
}

h1 {
    font-weight: 400;
    text-align: center;
    width: 100%;
    margin-top: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
}

form {
    width: 500px;
    backdrop-filter: blur(5px);

}

fieldset {
    padding: 20px;
}

.difficulty label, .difficulty input {
    display:inline-block;
}

form label, form input, form select {
    display: block;
}

.difficulty label {
    margin-right: 40px;
}


form input, form select, form textarea {
    width: 100%;
    font-size: 25px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    outline: none;
    padding: 5px;
    margin-bottom: 8px;
}

form button {
    width: 100%;
    margin-top: 50px;
    font-size: 30px;
    padding: 3px;
    border-radius: 10px;
    font-weight: bold;

}

form button:hover {
    background-color: blanchedalmond;
}

.question {
    padding: 5px;
}

.answer {
    padding: 5px;
}

table, th, td {
    border: 1px solid black;
 }
td { 
    padding: 40px;
    text-align: center;
}

table {
    margin-bottom: 30px;
}