main {
    margin: 0;
    background-color: unset;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-image: url("/resources/img/backgroundHome.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.text {
    background-color: var(--bg-color);
    padding: 20px;
    opacity: 0.8;
    color: var(--blue);
    font-weight: bold;
}

.button {
    color: var(--text-color);
    font-size: 1.8em;
    font-weight: bold;
    padding: 15px;
}

.start-button {
    background-color: var(--bg-color);
    text-align: center;
    padding: 30px 0;
    opacity: 0.9;
    font-size: 1.0em;
}

a {
    text-decoration: none;
}