* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2c3e50;
    min-height: 100vh;
    /* fill screen */
    display: flex;
    flex-direction: column;
    font-family: 'Comic Sans MS', 'Comic Sans', 'Comic Neue', cursive;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
}

img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1rem;
    color: #ac2222;
    text-align: center;
    background-color: #e0e0e0;
}

footer a {
    color: inherit;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 1.5rem;
}

.site-nav a,
.review-form-link {
    display: inline-block;
    min-width: 7rem;
    padding: 0.7rem 1rem;
    color: #ffffff;
    text-decoration: none;
    background-color: #ac2222;
    border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.review-form-link:hover,
.review-form-link:focus-visible {
    color: #2c3e50;
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

#dvd {
    position: absolute;
    width: 160px;
    height: 80px;
    background-image: url("media/gabibbo_steso.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: hue-rotate(0deg) saturate(200%);
    pointer-events: none;
}
