
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 67.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1818;
}

.container {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.2);

    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.button {
    text-decoration: none;
    padding: 0.9rem 1.875rem;
    border-radius: 0.75rem;
    background: #2b2b33;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;

    transition: 0.3s ease;
}

.button :hover {
    background: #3d3d42;
    transform: translateY(-3px);
}