header {
    padding: 100px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;  
    flex-wrap: wrap;
}



.header-text {
    width: 850px;
}

.circle {
    height: 600px;
    width: 600px;

    max-height: 80vw;
    max-width: 80vw;
    overflow: hidden;
    border-radius: 50%;
    border: 20px solid var(--main-brand-color);
    display: flex;
    justify-content: center;
    align-items: center;
    left: 100%;
}

.circle img {
    width: 100%;
}

nav {
    margin-bottom: 120px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--secondary-text-color);
    text-decoration: none;
    position: relative;
    padding: 3px;
}

nav a:hover {
    color: var(--text-color);
}

nav a::after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: var(--main-brand-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;

}

nav a:hover::after {
    width: 100%;
}

#button {
    display: none;
}

label [for="button"] {
    display: none;
}

 @media(max-width: 800px) {

    nav ul {
        display: none;
        flex-direction: column;
    }

    #button:checked ~ ul {
        display: flex;

    }

    label [for="button"] {
        display: block;
    }


    h1{
        font-size: 12vw;
        text-align: center;
    }
   
    .sub {
        text-align: center;
    }
    
 }