@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary:      #8aa5a2;
    --secondary:    #e8f3ea;
    --light:        #fdfdfd;
    --dark:         #252525;
    --gray:         #404040;
}

body {
    margin: 0;
    background-color: var(--light);
    font-family: "Roboto", sans-serif;
    letter-spacing: 2.5px;
    font-size: 1.1rem;
    overflow-x: hidden;
    color: var(--gray);
}

main {
    min-height: 100vh;
}

section {
    padding: 0 5vw;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
}

h1 { 
    font-size: 2.5em;
    text-align: center; 
}

h2 {
    font-size: 1.3em;
}

p {
    font-weight: 300;
    line-height: 1.4em;
}

a {
    font-weight: 700;
    text-decoration: none;
}

footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 20px 5vw;
    text-align: right;
}

footer a {
    color: var(--light);
}

@media screen and (max-width: 700px) {
    footer a {
        font-size: .8em;
    }
}