* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* background: rgb(0,0,0);
    background: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(188,7,7,1) 100%); */
    /* background-color: black; */
    background-image: url(assets/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Gothic A1', sans-serif;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: absolute;
}

.navbar {
    width: 100vw;
    height: 80px;
    background: none;
    position: relative;
}

.navbar__container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.title__container {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 20px;
    padding: 5px 0;
}

.title {
    color: white;
    font-size: 2rem;
    font-weight: 4  00;
}

#logo {
    height: 100%;
}

.menu {
    display: flex;
    list-style-type: none;
    justify-content: left;
    height: 100%;
    align-items: center;
    background: none;
    width: auto;
    gap: 50px;
    font-size: 1.2rem;
    margin: 0 20px; 
}

li {
    width: 60px;
    color: white;
    display: flex;
    width: auto;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

i {
    font-size: 50px;
    color: white;
}

.fa-facebook:hover {
    color: #1877f2;
    transition: all 0.5s ease;  
    transform: scale(1.2);
    background: none;
}

.fa-github:hover {
    color: gray;
    transition: all 0.5s ease;
    transform: scale(1.2);
    background: none;
}

a {
    background: none;
}

.menu-list:hover {
    transition: all 0.5s ease;
    text-shadow: 0 0 20px white;
    background: none;
    transform: translateY(-5px);
    font-weight: 800;
}

.menu__bar {
    display: none;
}

.main {
    display: flex;
    width: 100vw;
    height: 85vh;
}

.quote__container {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

p {
    width: 90%;
    height: auto;
    color: white;
    font-size: 3rem;
    text-align: center;
}

.picture__container {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#profile {
    width: 60%;
}
/* 
#profile:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px white;
    transition: all 0.5s ease;
} */

@media screen and (max-width: 960px){
    
    .navbar__container {
        display: flex;
        position: absolute;
    }
    
    .title__container {
        width: auto;
        position: relative;
    }
    
    .menu {
        width: 90vw;
        height: 250px;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: -1500px; /*100px*/ 
        align-items: center;
        justify-content: center;
        gap: 20px;
        background: rgba( 255, 255, 255, 0.25 );
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
        backdrop-filter: blur( 4px );
        -webkit-backdrop-filter: blur( 4px );
        border-radius: 10px;
        border: 1px solid rgba( 255, 255, 255, 0.18 );
        margin: 0 5vw;
        padding: 10px auto;
        transition: all 0.8s ease;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .menu__bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100%;
        gap: 5px;
        position: relative;
        transition: all 0.5s ease;
        z-index: 99;
    }

    .bar {
        width: 50%;
        border: 2px solid white;
        transition: all 0.5s ease;
    }

    li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        background: none;
    }

    a {
        width: 100%;
        background: none;
    }
    i {
        background: none;
    }

    .menu.active {
        top: 100px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
    }

    .menu__bar.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
        transition: all 0.5s ease;
    }

    .menu__bar.is-active .bar:nth-child(2){
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu__bar.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
        transition: all 0.5s ease;
    }

    .picture__container {
        display: none;
    }

    .quote__container {
        width: 100vw;
    }

    p {
        font-size: 2rem;
    }
}