html, body {
    font-family: "Barrio", system-ui;
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: center;
    background: #000;
    font-size: 24px;
}
section {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
}
.inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
h1 {
    font-family: "Barrio", system-ui;
    font-size: 5vw;
    font-weight: 700;
    color: #fff;
    display: block;
    margin: 0;
    padding: 0 10%;
    line-height: 1.2;
    text-align: center;
}

h2 {
    font-family: "Shadows Into Light", cursive;
    font-size: clamp(40px, 10vw, 80px);
    font-weight: 400;
    color: #fff;
    display: block;
    margin: 40px 0;
    padding: 0 10%;
    line-height: 1;
    text-align: center;
    animation-delay: 1s;
}
p {
    animation-delay: 2s;
}
a {
    color: #fff;
}
a:hover {
    color: #fff;
}


.logo {
    width: 80vw;
	max-width: 600px;
    margin: auto;
	display: block;
	animation: all 2s ease-out;
}




/* ------------------------------------------ */
/* CSS3 Animations 
/* ------------------------------------------ */

@-webkit-keyframes fade {
        0%   { opacity: 0; }
        100% { opacity: 1; }
}
@-moz-keyframes fade {
        0%   { opacity: 0; }
        100% { opacity: 1; }
}
@-ms-keyframes fade {
        0%   { opacity: 0; }
        100% { opacity: 1; }
}