* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    overflow: hidden;
    background-color: #000;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 500;
}

p {
    font-size: 1.5em;
    font-weight: 400;
}

a {
    display: block;
    text-decoration: none;
    font-size: large;
    color: darkgrey;
    margin: 10px;
    font-weight: 300;
}

/* Typing Animation */
.typing-animation {
    display: flex;
    justify-content: center;
}

.typing-animation span {
    display: inline-block;
    opacity: 0;
    animation: typing 2s forwards infinite;
}

.typing-animation span:nth-child(1) {
    animation-delay: 0.1s;
}

.typing-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-animation span:nth-child(3) {
    animation-delay: 0.3s;
}

.typing-animation span:nth-child(4) {
    animation-delay: 0.4s;
}

.typing-animation span:nth-child(5) {
    animation-delay: 0.5s;
}

.typing-animation span:nth-child(6) {
    animation-delay: 0.6s;
}

.typing-animation span:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes typing {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* 3D Background Animation */
.animation-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.animation-area .box {
    position: absolute;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 20s linear infinite;
    bottom: -150px;
}

.animation-area .box:nth-child(1) {
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.animation-area .box:nth-child(2) {
    left: 20%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
    animation-duration: 25s;
}

.animation-area .box:nth-child(3) {
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 4s;
    animation-duration: 30s;
}

.animation-area .box:nth-child(4) {
    left: 40%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.animation-area .box:nth-child(5) {
    left: 70%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 22s;
}

.animation-area .box:nth-child(6) {
    left: 80%;
    width: 90px;
    height: 90px;
    animation-delay: 3s;
    animation-duration: 20s;
}

.animation-area .box:nth-child(7) {
    left: 90%;
    width: 100px;
    height: 100px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.animation-area .box:nth-child(8) {
    left: 30%;
    width: 30px;
    height: 30px;
    animation-delay: 2s;
    animation-duration: 17s;
}

.animation-area .box:nth-child(9) {
    left: 50%;
    width: 70px;
    height: 70px;
    animation-delay: 7s;
    animation-duration: 30s;
}

.animation-area .box:nth-child(10) {
    left: 60%;
    width: 20px;
    height: 20px;
    animation-delay: 6s;
    animation-duration: 23s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}