@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: black;
    overflow-x: hidden;
    overflow-y: auto;
}

nav {
    width: 100%;
    height: 10vh;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.logo span {
    color: #077b32;
    text-shadow: 0 0 10px #077b32;
}

.hamburg,
.cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    display: none;
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
}

.nav-container .links {
    display: flex;
}

.nav-container .links a {
    position: relative;
    font-size: 1.2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}

.nav-container .links a::before {
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #ff0000;
    transition: 0.2s linear;
}

.nav-container .links a:hover::before {
    width: 100%;
}

.nav-container .links a:hover {
    color: #077b32;
}

.dropdown {
    z-index: 100;
    position: absolute;
    top: 0;
    transform: translateY(-500px);
    width: 100%;
    backdrop-filter: blur(4px) brightness(40%);
    box-shadow: 0 0 20px black;
    transition: 0.2s linear;
}

.dropdown .links a {
    display: flex;
    color: white;
    text-decoration: none;
    justify-content: center;
    padding: 15px 0;
    align-items: center;
    transition: 0.2s linear;
}

.dropdown .links a:hover {
    background-color: #d10000;
}

section {
    width: 100%;
    min-height: 100vh;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.main-container .image {
    width: 500px;
    height: auto;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 0 50px #aa0ed1;
    margin-bottom: 2rem;
}

.main-container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-container .image:hover {
    animation: animate 1.5s ease-in-out infinite;
}

@keyframes animate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.main-container .content {
    color: white;
    width: 40%;
    min-width: 300px;
    text-align: center;
}

.content h1 {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.content h1 span {
    color: #00ffd5;
    text-shadow: 0 0 10px #077b32;
}

.content .typewriter {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 600;
}

.content .typewriter-text {
    color: #1fa6db;
    text-shadow: 0 0 10px #b235d1;
}

.content p {
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    margin: 10px 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.social-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #68077b;
    border-radius: 50%;
    color: #4d077b;
    margin: 5px 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}

.social-links i:hover {
    transform: scale(1.3);
    color: black;
    background-color: #3ac0b9;
    filter: drop-shadow(0 0 10px #92218c);
}

.content button {
    width: 50%;
    height: 6vh;
    margin: 30px;
    background-color: #077b7b;
    color: white;
    border: none;
    outline: none;
    font-size: 120%;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.2s linear;
}

.content button:hover {
    transform: scale(1.1);
    color: #7b0754;
    border: 2px solid #076a7b;
    background-color: transparent;
    box-shadow: 0 0 40px #d9ff03;
}

@media (max-width: 884px) {
    nav .logo {
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }

    .main-container {
        flex-direction: column;
    }

    .nav-container .links {
        display: none;
    }

    .hamburg,
    .cancel {
        display: block;
    }

    .main-container .content {
        width: 90%;
    }

    .main-container .image {
        width: 80%;
    }
}

@media (max-width: 440px) {
    .main-container .image {
        width: 80%;
    }

    .main-container .content {
        width: 90%;
    }

    .main-container button {
        width: 80%;
    }
}
