body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    color: rgb(0, 0, 0);
    font-size: 40px;
    text-align: center;
}

.button {
    background-color: rgb(214, 214, 214);
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;

    position: absolute;
    top: 30%;
}

.button:hover {
    background-color: rgb(50, 50, 50);
}