* {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui;
    font-weight: 600;
    list-style: none;
    z-index: 0;
}

::-webkit-scrollbar {
    background: transparent;
    width: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: black;
    background-image: url(./pictures/bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top -40%;
}



nav {
    position: absolute;
    top: -1%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 400%;
    width: 13%;
    height: auto;
}

nav .logo {
    font-size: 2.5rem;
    background: -webkit-linear-gradient(120deg, hsl(318, 94%, 61%), hsl(239, 69%, 51%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul {
    text-transform: uppercase;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 35px;
    font-size: 1.2rem;
}

nav a {
    font-size: 1.7rem;
    background: -webkit-linear-gradient(120deg, hsl(318, 94%, 61%), hsl(239,69%, 51%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

nav a:hover {
    border-bottom: 2px solid hsl(239, 69%, 51%);
    transition: 1s;
}


.introduction {
    background: -webkit-linear-gradient(120deg, hsl(318, 94%, 61%), hsl(239,69%, 51%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: linear-gradient;
    width: 1000px;
    height: 400px;
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 400px;
    margin-left: -20%;
}


@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shadow {
    0% {
        opacity: 0.5;
        border-radius: 50%;
    }

    50% {
        opacity: 0.0;
        border-radius: 50%;
    }

    100% {
        opacity: 0.5;
        border-radius: 50%;
    }
}