body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #4a73e8;
    animation: fadeIn 1s ease-in-out;
    user-select: none;
}

body::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('./logo.png') no-repeat center center;
    background-size: 20%;
    opacity: 0.2;
    z-index: -1;
}

h1 {
    font-size: 6rem;
    font-weight: 900;
    margin: 0;
    cursor: default;
    animation: float 3s ease-in-out infinite;
}

h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    cursor: default;
}

p {
    font-size: 1.2rem;
    cursor: default;
}

a {
    color: red;
}

#arrow {
    transform: rotate(-90deg)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}