* {
    margin: 0;
    background-color: black;
    font-family: "Geist", sans-serif;
}

.big {
    display: flex;
    flex-direction: column;

    /* smooth page load animation */
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.logo {
    margin-top: 100px;
    height: 20em;
    align-self: center; /* ONLY the logo is centered */
}

h1 {
    color: white;
    font-weight: 400;
    letter-spacing: -7px;
    font-size: 5em;
    align-self: center;
}

p {
    color: white;
    align-self: center;
    font-weight: 100;
}

.btn {
    margin-top: 80px;
    height: 50px;
    width: 150px;
    color: white;
    background-color: #c1008e;
    border-radius:40px;
    border: none;
    align-self: center;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.5px;
}

.btn:hover {
    transform: scale(1.2);
}

.btn:active {
    color: black;
    background-color: white;
}

/* keyframes for smooth load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
