body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fab823c7;
    color: #3c0d01;
    font-family: "Comic Sans MS", cursive;
    font-variant: small-caps;
    line-height: 1.5;
    text-align: center;
    font-size: 100%;
    width: 100%;
}

#privacyPolicyText {
    text-align: start;
}

.font-variant-normal {
    font-variant: normal;
  }

header {
    background-color: #3c0d01;
    width: 100%;
}

.header-content {
    width: 100%;
    margin: auto;
    display: flex;
}

.iconAndLogo {
    width: 30%;
    height: 100%;
}

a {
    margin: 0;
    text-decoration: none;
    color: #ffff00;
    cursor: pointer;
}

nav {
    width: 70%;
    height: 100%;
}

.d-flex {
    display: flex;
    justify-content: center;
}

.nav-wrap {
    list-style: none;
    text-align: center;
    background-color: #3c0d01;
    padding: 0;
}

.nav-wrap li {
    display: inline-block;
    margin-right: 5%;
    margin-top: 0.5%;
}

.nav-wrap li a {
    display: inline-block;
    font-size: 130%;
}

.nav-wrap li a:hover {
    text-decoration: underline;
    color: #ffff00;
}

.selected {
    text-decoration: underline;
    color: #ffff00;
}

.icon {
    padding-top: 2.5%;
    height: 80px;
    width: 80px;
}

.logo {
    margin: 0;
    padding: 3% 3%;
    font-size: 200%;
}

button {
    margin: 5px;
    padding: 8px;
    color: yellow;
    background-color: #884203;
    border-color: #884203;
    border-radius: 5px;
    font-family: "Comic Sans MS", cursive;
    font-variant: small-caps;
    cursor: pointer;
    outline: none;
}

button.active {
    background-color: #e48431;
}

button:hover {
    background-color: #e48431;
}

.links {
    color: #006400;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.linksPolicy {
    color: #ffff00;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.links:hover,
.linksPolicy:hover {
    text-decoration: underline;
}

.circle {
    border-radius: 24px;
}

.indents {
    margin: auto;
    width: 100%;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section {
    width: 100%;
}

.footer {
    width: 100%;
    padding: 1% 0;
    color: yellow;
    font-size: 100%;
    background-color: #3c0d01;
    font-variant: normal;
    font-family: Arial, sans-serif;
}

@media (max-width: 840px) {
    .header-content {
        display: block;
    }

    .iconAndLogo {
        width: 100%;
        height: 100%;
    }

    nav {
        width: 100%;
        margin: auto;
    }

    .nav-wrap {
        margin-top: 0;
    }

    .nav-wrap li {
        display: inline-block;
    }
    
    .nav-wrap li a {
        display: inline-block;
        font-size: 130%;
    }
}

@media (max-width: 610px) {
    .header-content {
        display: block;
    }

    .iconAndLogo {
        width: 100%;
        height: 100%;
    }

    nav {
        width: 100%;
        margin: auto;
    }

    .nav-wrap {
        margin-top: 0;
    }

    .nav-wrap li {
        display: inline-block;
    }
    
    .nav-wrap li a {
        display: inline-block;
        font-size: 100%;
    }
}

@media (max-width: 500px) {
    .header-content {
        display: block;
    }

    .iconAndLogo {
        width: 100%;
        height: 100%;
    }

    nav {
        width: 70%;
        margin: auto;
    }

    .nav-wrap {
        margin-top: 0;
    }

    .nav-wrap li {
        display: block;
    }
    
    .nav-wrap li a {
        display: block;
        font-size: 120%;
    }
}
