*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Montserrat';
}




.montserrat{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



:root{
    --background: rgb(24, 24, 24);
    --second-background: rgb(21, 21, 21);
}

body{
    
    min-height: 100vh;
    background-color: var(--background);
}


nav{
    /*position: fixed; */
    top: 0;
    width: 100%;
    padding: 2em 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10x);
    z-index: 1000;
}
ul{
    display: flex;
    align-items: center;
    gap: 3em;
}
nav ul a{
    color: white;
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}
nav ul a:hover{
    opacity: 1;
}
/*
.logo{
    font-size: 2em;
    color: white;
    font-weight: 800;
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}
.logo:hover{
    opacity: 1;
}
    */
.btn{
    padding: 0.5em 1em;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0.5em;
    font-size: 1.1em;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.3 ease-in-out;
}
.btn:hover{
    background-color: white;
    color: var(--background);
}
span{
    background: linear-gradient(to right, yellow, #6cff52, #3ec5ff);
    background-clip: text;
    color: transparent;
}
#menu{
    color: white;
    font-size: 3em;
    display: none;
}
section{
    min-height: 100vh;
    padding: 1% 15%;
}
#home{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    color: white;
    margin-top: 5rem;
}
#home img{
        width: 18vw;
        border-radius: 50%;
        margin-top: 2em;
}

.info-box{
    display:flex;
    flex-direction: column;
    
    gap: 1em;
    max-width: 600px;
}


.info-box h1{
    font-size: 5em;
    font-weight: 500;
    text-align: center;
    gap: 1em;
}
.info-box h3{
    font-size: 2em;
    font-weight: 400;
    text-align: center;
}
.info-box p{
    opacity: 0.7;
}
#one{
    float: left;
    margin: 0 1.5%;
    width: 60%;
}

#two{
    float: right;
}

#three{
    float: left;
}


.btn-box{
    display: flex;
    gap: 1em;
}
.btn-box .btn:nth-of-type(2){
    background-color: white;
    color: var(--background);
}
.btn-box .btn:nth-of-type(2):hover{
    background-color: var(--background);
    color: white;
}

::-webkit-scrollbar{
    width: 20px;
    background-color: var(--background);
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom, #6cff52, #3ec5ff);
}


#about{
    background-color: var(--second-background);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
}


#about img{
    width: 30vw;
    border-radius: 1em;
}

.about-box{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2em;
}

.about-box h1{
    font-size: 5em;
}

.about-box p{
    color: white;
    opacity: 0.8;
}

.skills{
    display: flex;
    text-align: left;
    gap: 10em;
}

.skills ul{
    font-size: 1.3em;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    color: white;
    opacity: 0.8;
    align-items: baseline;
}

.skills ul li span{
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.8em;
    transition: 0.3s ease-in-out;
    color: white;
}

.skills ul li:hover{
    transform: translateX(10px);
}

.skills ul li i{
    font-size: 0.8em;
}

.about-box h2{
    font-size: 1.8em;
}

#btnRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


#info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#phone{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#portfolio{
    background-color: var(--background);
}

.head{
    text-align: center;
    font-size: 5em;
    margin: 0.1em 0;
    margin-top: 5em 0;
    padding: 5%;
}


.header{
    text-align: center;
    font-size: 4em;
    margin: 0.1em 0;
    margin-top: 2em 0;
}




.portfolio-container{

    padding-top: 2%;
    grid-template-rows: repeat(auto-fit,minmax(250px, 1fr));
    gap: 4em;
}


/*
.portfolio-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
}
*/

.box{
    border: 3px solid rgb(49, 49, 49);
    border-radius: 0.5em;
    display: flex;
    padding-top: 5%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
    padding: 2em;
    gap: 1em;
    color: white;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.box:hover{
    border: 3px solid rgb(100, 100, 100);
}



.box p{
    opacity: 0.8;
    justify-content: center;
}

.box h1{
    font-size: 2em;
}

.box img{
    width: 75%;
    height: auto;
    border-radius: 0.5em;
}

/*
video{
    width: 75%;
    height: auto;
    border-radius: 0.5em;
    padding: 2em;
}
*/


.bx bxl-instagram-alt{
    size: 2em;
}


