html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    width: min(500px, 70vw);
    height: auto;

    opacity: 0;
    transform: translateY(10px);

    animation: fadeIn 4s ease forwards;

    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

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

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