<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url(../../img/pexels-andré-beltrame-1878346.jpg);

    @supports (background-image: url('pexels-andré-beltrame-1878346.webp')) {
        background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url(../../img/pexels-andré-beltrame-1878346.webp);
    }

    background-size: cover;
    background-color: #284442;
    background-position: top center;
}

html, body {
    margin: 0;
    height: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.button-container {
    margin: 20px 0;
    margin: 0 auto;
    margin-top: 8%;
    left: 45%;
    /* Centra la tabella orizzontalmente */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.column {
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.button {
    width: 300px;
    height: 80px;
    background-color: #e4ab0eff;
    background-repeat: no-repeat;
    background-position: center center;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    margin: 0.5rem;
    background-image: linear-gradient(#d3b518, #c74103);
    filter: drop-shadow(0 2px 6px #000000aa);
    text-shadow: 0px 1px 4px black;
    opacity: 0.9;
    transition: all 0.2s;
    overflow: hidden;
}

    .button:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    .button:active {
        opacity: 0.8;
        transform: scale(0.95);
    }

    .button:before {
        content: "";
        position: absolute;
        top: -5px;
        left: -85px;
        right: -5px;
        bottom: -5px;
        background-image: url('../../img/pane.png');
        border-radius: 160px;
        z-index: -1;
    }

.btn-icon {
    position: fixed;
    transform: scale(4);
    opacity: 0.3;
    z-index: -1;
    left: 1.2rem;
    top: 2.4rem;
}

.title {
    color: white;
    font-size: 48px;
    font-weight: bold;
    padding: 10px;
    text-shadow: 0 0 1px black;
    filter: drop-shadow(0 2px 14px white);
}

.input-container {
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    font-size: larger;
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-primary {
    filter: drop-shadow(0 0 4px #0d6efd);
}

.btn-success {
    filter: drop-shadow(0 0 4px #198754);
}

.about-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    color: white;
    width: 100%;
}

.about-pic {
    min-width: 20%;
    max-width: 40%;
    border-radius: 0.5rem;
    filter: drop-shadow(0px 2px 4px black);
    width: auto;
    margin: 3rem;
}</pre></body></html>