/*
Theme Name: Schermi
Theme URI: https://www.instagram.com/schermi.cinemamultipiazza/
Author: Schermi
Description: Tema semplice: sfondo bianco, logo al centro e link a Instagram.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: schermi
*/

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

html,
body {
    height: 100%;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.site-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.instagram-link {
    display: inline-block;
    margin-top: 32px;
    line-height: 0;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.instagram-link:hover {
    opacity: 0.6;
}

.instagram-link svg {
    width: 40px;
    height: 40px;
    fill: #000000;
}
