body {
    margin: 0;
    padding: 0;
}

.grayscale {
    background-image: url('./assets/crowd.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    background-color: gray;
    filter: grayscale(0.9);
    position: absolute;
    top: 0;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
}

.container button {
    border: 3px solid black;
    width: 80px;
    border-radius: 6px;
    margin: 0 4px;
    transition: backdrop-filter 0.3s;
    background: transparent;
}

h1 {
    color: white;
    text-align: center;
}

span {
    display: flex;
    justify-content: center;
    color: #eaa251;
    font-weight: 900;
}

.container .btn {
    box-shadow: 0px 1px 10px 6px #ffffff73;
    backdrop-filter: blur(0);
}