@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
}

.container {
    text-align: center;
}

.text {
    font-family: 'Sono', sans-serif;
    font-size: 5vw;
    color: white;
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 2s forwards;
    transition: all 0.5s ease;
}

.text:hover {
    cursor: pointer;
}
