:root {
    --halloween-bg: #141314;
    --default-bg: #fff4e4;

    --bg: var(--halloween-bg);
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--bg);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



h1, h2, h3, h4, h5, h6 {
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



.flex {
    display: flex;
}

.grid-full-page {
    display: grid;
    height: 100vh;
    grid-template-rows: 1fr auto;
}



.logo-z-black {
    width: 100%;
    max-width: 256px;
    height: auto;
}

.icons {
    margin-top: 32px;
}

.icon.--dribbble {
    width: 48px;
    height: 48px;
}

a.link-dribbble path {
    width: 48px;
    height: 48px;
    fill: #FFFFFF;
    transition: all 0.3s ease;
}

a.link-dribbble:hover path {
    fill: #ea4c89;
}

a.link-dribbble .icon.--dribbble {
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: scale 0.3s ease;
}

a.link-dribbble:hover .icon.--dribbble {
    transform: scale(1.1);
}

/*# sourceMappingURL=styles.css.map*/