@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*
{
    padding: 0;
    margin: 0;
    font-family: 'Book Antiqua';
    box-sizing: border-box;
}

body
{
    width: 100%;
    min-height: 100vh;
    background-color:black;
    overflow: scroll;
    margin: 0;
    display: inline-flex;
    padding-left: 5%;
    flex-direction: column;
}

section{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
/*navigation content manip*/
nav
{
    width: 100%;
    height: 20vh;
    position: sticky

}

.nav-container
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo
{
    color: antiquewhite;
    font-size: clamp(3rem, 0.5rem + 5vw, 3rem);
    font-weight: bold;

}

.logo span{
    color: #00ff55;
    text-shadow: 0 0 10px #8c2c23;

}
.hamburg,
.cancel
{
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: antiquewhite;
    display: none;/*This used to be block*/
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
}

.nav-container .links {
    display: flex;
    justify-content: center;
    align-items: center;

}

.nav-container .links a{
    font-size: 1.2rem;
    color: antiquewhite;
    margin: 0 20px;
    text-decoration: none;
    transition: 0.3s linear;
    font-size: clamp(1.5rem, 0.5rem + 5vw, 1rem);
}
.nav-container .links a:hover{
    color: #027428;
    border-bottom: 2px solid #00ff55;
}

/*Dropdown content manip*/
.dropdown
{
    z-index:100;
    position: absolute;
    top: 0;
    transform: translateY(-500px);
    width: 100%;
    height: auto;
    backdrop-filter: blur(4px) brightness(40%);
    box-shadow: 0 0  20px black;
    transition: 0.2s linear;
}

.dropdown .links a
{
    display: flex;
    color: antiquewhite;
    text-decoration: none;
    padding: 15px 0;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
    font-size: clamp(1.5rem, 0.5rem + 5vw, 1.5rem);
}

.dropdown .links a:hover{
    background-color: #027428;
}

/*Main content manip*/
section{
    width: 100%;
    height: 70vh;
    box-sizing: border-box;
    margin-top: 20px;
}

.main-container
{
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.main-container .content{
    color: antiquewhite;
    width: 80%;
    max-width: 80%;
    min-height: 10%;
    text-align:left;
}

.content h1{
    font-size: clamp(1rem, 1rem + 5vw, 2rem);
}

.content h1 span{
    font-size: clamp(1rem, 1rem + 5vw, 2rem);
    text-shadow: 0 0 10px #027428;
    color: #00ff55;
}


.content .typewriter{
    font-size: clamp(1rem, 1rem + 5vw, 2rem);

}

.typewriter span{

    color: #00ff55;
    text-shadow:  0 0 10px #027428;
}

.content p{
    font-size: clamp(0.4rem, 0.2rem + 9vw, 1.5rem);
    margin : 10px 0;
    padding-bottom: 15px;
}
.content hr{
    width: 100%;
    height: 2px;
    background-color: #00ff55;
    border: none;
    margin: 10px 0;
}
.content br {
    display: none;
    padding-bottom: 15px;
    padding-top: 15px;
}
a {
    color: #00ff55; /* Change this to your desired color */
    text-decoration: underline; /* Optional: Remove underline */
}

a:hover {
    color: #027428; /* Change this to your desired hover color */
    text-decoration: underline; /* Optional: Add underline on hover */
}
/*Social links manip*/
.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #027428;
    border-radius: 50%;
    color: #00ff55;
    margin: 0 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}

.social-links i:hover{
    scale: 1.3;
    filter: drop-shadow(0 0 10px #027428);
    color: black;
    background-color: #00ff55;
}

/*About Social Links Manip*/
.about-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.about-social-links a{
    margin: 0 10px;
    color: transparent;
}

.about-social-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    border: 0.2rem solid #027428;
    border-radius: 50%;
    color: #00ff55;
    font-size: 1rem;
    transition: 0.2s linear;
}

.about-social-links i:hover {
    scale: 1.3;
    filter: drop-shadow(0 0 10px #027428);
    color: black;
    background-color: #00ff55;
}

/*Button Manip*/
.content button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 60%;
    margin: 30px;
    background-color: #00ff55;
    color: white;
    border: none;
    outline: none;
    font-size: 120%;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.2s linear;
    }

.content button:hover{
    scale: 1.1;
    color: #00ff55;
    border: 2px solid #027428;
    background-color: transparent;
    font-weight: 700;
    box-shadow: 0 0 40px 5px #027428;
}

/*index Image manip section*/
.main-container .image{
    display:inline-flex;
}

.main-container .image img{
    display: inline-flex;
}

/*Gif Manip*/
.gif-image {
    display: inline-flex;
    justify-content: left;
    align-items: center;
    transform: scale(0.4); /* Adjusted scale to 40% */
    width: 40%; /* Ensure the container fits the scaled image */
    height: auto; /* Ensure the height adjusts automatically */
    margin: 0 auto;
    margin-top: 3%;
    margin-bottom: 3%;
    overflow: hidden;
}

.gif-image img {
    width: 100%;
    height: auto; /* Ensure the image maintains its aspect ratio */
}



/*About section image manip*/
.about-image{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: auto;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 0 50px #00ff55;
    margin: 0 auto;
    margin-bottom: 1%;
}
.about-image img{
    width: 100%;
    height: auto;
}




@keyframes animate {
    0%
    {
        scale: 1;
    }
    50%
    {
        scale: 1.05;
    }
    100%
    {
        scale: 1;
    }
}

@media (max-width:900px) {
    nav .logo{
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }

    .main-container{
        display:inline-flex;
        flex-direction: column-reverse;
    }

    .nav-container .links{
        display: none;
    }

    .hamburg,
    .cancel{
        display: block;
    }

    .main-container .content{
        width: 90%;
    }
    .social-links i{
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    .about-social-links i{
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .main-container .image{
        z-index: -1;
        width: 300px;
    }
    .about-image{
        width: 150px;
    }
}

@media (max-width:440px) {
    .main-container .image{
        width: 200px;
    }

    .main-container .content{
        width: 95%;
    }

    .main-container button{
        margin-top: 15px;
    }
    .about-image{
        width: 120px;
    }
}