header{
    background-color: black;
    width: 100%;
    height: 100vh;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

header h1{
    font-size: 7rem;
    margin-bottom: 0;
}

header h3{
    font-size: 3rem;
}

header a{
    text-decoration: none;
    color: white;
}

header a:visited{
    color: white;
}

header nav{
    position: absolute;
    bottom: 5%;
}

header nav ul li{
    display: inline-block;
    padding-right: 1rem;
}

.content-box{
    width: 100%;
}

.content-box .card-tape{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

h1{
    text-align: center;
    font-size: 35pt;
    margin-bottom: 3rem;
}

.card {
    width: 20rem;
    aspect-ratio: 1.25 / 1;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1rem;
    margin: 1rem;
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: static;
    transform: none;
}

section{
    min-height: 100vh;
    padding-top: 5%;
}

#my-projects .card-tape{
    display: grid;
    grid-template-columns: repeat(2, 45%);
    place-items: center;
}

#my-projects .image{
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    place-items: center;
    position: relative;
}

#my-projects .image img{
    border-radius: 1rem;
    height: 100%;
    aspect-ratio: 1.5/1;
}

#my-projects .image .tags{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tags ul{
    padding: .5rem;
    line-height: 250%;
}

.tags ul li{
    background-color: rgba(255, 255, 255, .05);
    border: solid .1rem white;
    text-align: center;
    border-radius: .5rem;
    display: inline;
    padding: .5rem 1rem;
    transition: .3s ease;
}

.tags ul li:hover{
    cursor: default;
}

.tags h2{
    text-align: center;
}

.tags .html:hover{
    color: rgb(0, 123, 246);
    border-color: rgb(0, 123, 246);
}

.tags .javascript:hover{
    color: rgb(234, 246, 0);
    border-color: rgb(234, 246, 0);
}

.tags .typescript:hover{
    color: rgb(0, 170, 255);
    border-color: rgb(0, 170, 255);
}

.tags .css:hover{
    color: rgb(150, 45, 255);
    border-color: rgb(150, 45, 255);
}

.tags .scss:hover{
    color: rgb(255, 0, 230);
    border-color: rgb(255, 0, 230);
}

.tags .php:hover{
    color: rgb(156, 113, 255);
    border-color: rgb(156, 113, 255);
}
.tags .vue:hover{
    color: rgb(47, 255, 0);
    border-color: rgb(47, 255, 0);
}

.tags .laravel:hover{
    color: rgb(255, 0, 0);
    border-color: rgb(255, 0, 0);
}

.tags .angular:hover{
    color: rgb(164, 0, 0);
    border-color: rgb(164, 0, 0);
}

#my-projects .card{
    width: 100%;
    padding: 1rem;
}

#my-projects .card .content{
    margin-top: 2rem;
    background-color: transparent;
    width: 100%;
}

#my-projects .card .content ul{
    list-style: inside;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 0.3rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

#my-projects .card .btn{
    height: 2rem;
    position: absolute;
    bottom: 1rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

#my-projects .card .btn.higher{
    bottom: 4rem;
}

.btn img{
    height: 1rem;
}

#about-me p{
    background-color: rgba(255, 255, 255, 0.05) ;
    margin: 2rem 4rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
}

#language-select{
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    width: 10%;
    height: 10%;
}

#language-select a{
    height: 30%;
    aspect-ratio: 2/1;
}

#language-select a img{
    width: 100%;
    height: 100%;
    
    opacity: 30%;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

#language-select a img:hover{
    opacity: 1;
}




@media (width < 1500px) {
    #my-projects .card{
        min-height: 55rem;
    }

    #my-procets .card .tags{
        width: 100%;
    }

    #my-projects .image{
        flex-direction: column;
        height: auto;
        position: relative;
        width: 100%;
    }

    #my-projects .image img{
        width: 75%;
    }
}

@media (width < 850px){
    .card-tape{
        grid-template-columns: 90% !important;
    }

    .card .image img{
        height: 25rem;
    }

    header h1{
        font-size: 14vw;
    }

    header h3{
        font-size: 8vw;
    }

    #contact-info{
        flex-direction: column;
    }


    .card-tape{
        flex-direction: column;
    }

    .card-tape .card{
        width: 50%;
        text-align: center;
    }

    h3{
        font-size: 12vw;
    }
}

@media (width < 600px){
    .card-tape .card{
        width: 90%;
    }

    section{
        overflow-y: hidden;
    }
}



