:root {
    --headingFont: 'Volkhov';
    --bodyFont: 'Open Sans'
}

body {
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(128,160,128,1) 100%);    
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: var(--bodyFont), sans-serif;
}

h1,h2,h3 {
    font-family: var(--headingFont), serif;
}

.logo {
    min-height: 480px;
    min-width: 480px;
}

.intro {
    text-align: center;
}

.dropped {
    text-shadow: 1px 1px 3px #E5E5E5;
    text-transform: uppercase;
}