body{
    width: 100%;
    height: 100%;
    font-family: "Genos", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
}

.container-fluid{
    width: 100%;
    height: 100%;
    padding: 0rem;
    margin: 0 auto;
    position: absolute;
    background-repeat: no-repeat;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-image: linear-gradient(#000002, #001F34);
}

.animate {
    width: 100%;
    height: 100%;
}

.animate * + :not(#car *){
    animation: anim 1s ease-out;
}

#intro h1{
    position: relative;
    text-align: center;
    top: 25%;
    font-size: 125px;
    color:azure;
    opacity: 85%;
    line-height: 80px;
}

@keyframes on{
    from{
        font-size: 30px;
    }
    to{
        font-size: 35px;
    }
}

@keyframes away{
    from{
        font-size: 35px;
    }
    to{
        font-size: 30px;
    }
}

@keyframes anim{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

#navbar{
    display: flex;
    position: absolute;
    height: 10%;
    width: 100%;
    top: 45%;
    padding: 0;
    justify-items: center;
    justify-content: space-evenly;
}

#navbar li{
    list-style: none;
    text-decoration: none;
    font-size: 30px;
}

#navbar a{
    position: relative;
    text-decoration: none;
    color: white;
}

#navbar a.hovered{
    font-size: 25px;
    animation: on 0.5s;
    animation-fill-mode: forwards;
}

#navbar a.unhovered{
    font-size: 25px;
    animation: away 0.5s;
    animation-fill-mode: forwards;
}

.col-lg-6 #wonderland {
    display: flex;
    width: 50%;
    left: 50%;
}

#aboutme .col-lg-6 {
    position: relative;
    text-align: center;
    padding: 5%;
}

#aboutme .col-lg-6 h2 {
    position: relative;
    top: 15%;
    color: azure;
}

#aboutme #paragraph{
    position: relative;
    top: 25%;
    color: azure;
    font-size: 20px;
}

#aboutme #carcont{
    display: block;
    padding: 10%;
    top: -5%;
}

#aboutme #car{
    display: block;
    position: relative;
}

#aboutme #car img{
    width: 100%;
}

[class*="carousel-control-"]{
    padding: 0;
    margin: 0;
    width: 50px;
    height: 50px;
    top: 40%;
}

.carousel-control-prev-icon{
    background-color: black;
    border-radius: 50%;
}

.carousel-control-next-icon{
    background-color: black;
    border-radius: 50%;
}


.carousel-inner{
    width: auto;
    max-width: 50rem !important;
    height: auto;
    max-height: 30rem !important;
    overflow: hidden;
    border: 2px solid azure;
    border-radius: 50px;
}

#skillicons h2{
    color: azure;
    width: 100%;
    height: auto;
}

#skillicons .icon{
    display: inline-flex;
    justify-content: space-between;
    width: 5rem;
    padding: 1%;
    margin-right: 2rem;
    border: 1px solid #f0ffff;
    border-radius: 10px;
}

.tabcontent{
    padding: 1%;
}

#projects{
    display: block;
    padding: 2%;
    color: azure;
}

#projects img{
    position: relative;
    width: 150px;
    height: 125px;
}

#projects #tab{
    display: flex;
    color: azure;
    border: 1px solid black;
    border-radius: 20px;
}

#back{
    text-decoration: none;
}

#back h4{
    font-size: 20px;
    color: azure;
    margin: 0;
}