
* {
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body{
    margin:0;
}

header{
    display: flex;
    padding: 0px 50px;
    height: 100px;
    justify-content: space-between;
    align-items: center;
}

#menu-toggle{
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
}

.navbar{
    display: flex;
    gap: 40px;
}


#logo-heading{
    font-size: 64px;
    font-weight: 800;
}

hr.navigation-line{
    border: 3px solid black;
    border-radius: 60px;
    width: 97%;
}

header nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px
}

header nav a{
    text-decoration: none;
    color: black;
    font-size: 32px;
    padding: 10px 0px;
    
    transition: all 0.3s ease;
}

header nav a:hover{
    text-decoration: underline;
    font-weight: 700;
    transform:translateY(-5px)
}

header nav a.active{
    font-weight: 700;
    text-decoration: none;
}

footer{
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 125px
}

#footer-section{
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-around;
}

#footer-title-section{
    text-align: left;
}

#footer-title-heading{
    font-size: 48px;
    margin-bottom: 0px;
}

#footer-title-paragraph{
    font-size: 28px;
    margin-top: 0px;
}

#footer-link-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer-link-section-heading{
    font-size: 48px;
    margin-bottom: 0px;
}

#footer-link-section-2{
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 40px 40px;
    width: fit-content;
    padding: 25px 40px;
}

.footer-links{
    color: white;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    margin: 0px;
    
    transition: all 0.3s ease;
}

.footer-links:hover{
    color: white;
    text-decoration: underline;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    
    transform: translateY(-3px);
}

#footer-contact-section{
    text-align: center;
}

#footer-contact-heading{
    font-size: 48px;
    margin-bottom:0px
}

#footer-contact-paragraph{
    font-size: 28px;
    margin-top: 0px;
}

#footer-copyright-paragraph{
    color: white;
    text-align: center;
    opacity: 60%;
}


@media (max-width: 600px) {
    #menu-toggle{
        display: block;
    }

    .navbar{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .navbar.active{
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    header nav a{
        font-size: 24px;
        padding: 10px 0;
        color: white;
    }
}




