* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 5px 20px;
    height: 104px;
    display: flex;
    align-items: center;
}

header h1 {
    /* width: calc(100% - 80px);
    float: right; */
    text-align: center;
    /* line-height: 84px; */
    flex: 1;
}

nav {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

nav ul {
    display: flex;
    gap: 20px;
    padding: 5px 20px;
    height: 30px;
    align-items: center;
    justify-content: space-evenly;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

#active {
    text-decoration: underline;
    text-underline-offset: 3px;
}

main {
    background-color: rgb(255, 140, 66);
    color: rgb(0, 0, 0);
    min-height: calc(100vh - 40px - 30px - 74px);
    padding: 20px 20px 20px 20px;
}

main p {
    /* font-size: 50px; */
    display: flex;
    color: rgb(0, 0, 0);
    padding: 20px 20px 20px 20px;
}

main section {
    padding-top: 5px;
    padding-bottom: 5px;
}

main section h2,
main section h3 {
    padding-top: 5px;
    padding-bottom: 5px;
}

main section div p a {
    text-decoration: solid;
    text-decoration: underline;
    color: black;
}

main section img {
    width: 100%;
    border-radius: 15px;
}

main section div ul li {
    padding-right: 10px;
    padding-top: 5px;
    padding-left: 10px;
    padding-bottom: 5px;
}

main section div ol li {
    padding-right: 10px;
    padding-top: 5px;
    padding-left: 10px;
    padding-bottom: 5px;
}


.with_image {
    display: flex;
    gap: 20px;
}

.with_image_recipes {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
}



#question1 {
    border-collapse: collapse;
}

#question1 th,
#question1 td {
    border: 3px solid rgb(255, 255, 255);
    padding: 2px;
    width: 200px;
    height: 40px;
}



#question1 td {
    text-align: left;
    transition: 0.5s;
}

#question2 {
    border-collapse: collapse;
}

#question2 th,
#question2 td {
    border: 3px solid rgb(255, 255, 255);
    padding: 2px;
    width: 200px;
    height: 40px;
}



#question2 td {
    text-align: left;
    transition: 0.5s;
}

#question4 {
    border-collapse: collapse;
}

#question4 th,
#question4 td {
    border: 3px solid rgb(255, 255, 255);
    padding: 2px;
    width: 200px;
    height: 40px;
}



#question4 td {
    text-align: left;
    transition: 0.5s;
}

#question6 {
    border-collapse: collapse;
}

#question6 th,
#question6 td {
    border: 3px solid rgb(255, 255, 255);
    padding-right: 2px;
    padding-top: 2px;
    padding-left: 2px;
    padding-bottom: 5px;
    width: 200px;
    height: 40px;
}



#question6 td {
    text-align: left;
    transition: 0.5s;
}

#closing {
    cursor: pointer;
    transition: 0.5s;
    display: block;
    position: absolute;
}

#closing:hover {
    transform: rotate(360deg) !important;
}

footer {
    background-color: rgb(255, 255, 255);
    height: 30px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    line-height: 30px;
    color: rgb(0, 0, 0);
}

/* =========================================
   PRINT-ONLY STYLES
   ========================================= */
@media print {

    nav,
    header,
    footer,
    figcaption,
    img,
    br,
    .removable {
        display: none;
    }

    main {
        display: block;
        width: 100%;
        justify-content: center;
    }

    main section {
        padding-top: 1px;
        padding-bottom: 1px;
    }

    main section h2,
    main section h3 {
        padding-top: 1px;
        padding-bottom: 1px;
    }
}