html, body{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, white 0%, black 100%);
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
}

h1{
    margin-bottom: 40px;
    font-size: 32px;
}

.option{
    width: 300px;
    text-align: center;
    margin: 20px;
}

.option a{
    display: block;
    padding: 16px;
    background: rgba(35,35,35,0.8);
    color: black;
    text-decoration: none;
    border: 2px solid rgba(85,85,85);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.option a:hover{
    background: rgba(51,51,51,0.8);
    border-color: rgb(136,136,136);
}