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

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    background-image: url(../../img/BGintro.jpg);
}

.intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: #0d1117;
    position: absolute;
    z-index: 100;
    transform: rotate(-50% , -50%);
}

.logo {
    font-size: 3rem;
    color: #03fbff;
    opacity: 0;
    animation: fadeInLogo 3s forwards;
}

.main-content {
    text-align: center;
    opacity: 0;
    position: absolute;
    z-index: 99;
    transform: rotate(-50% , -50%);
}

h1 {
    margin-bottom: 2rem;
}

button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #03fbff;
    border: none;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
}

button:hover {
    background-color: #03fbff;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

