@font-face {
    font-family: 'Gazpacho';
    src: url('fonts/gazpacho-bold.otf') format('opentype');
    font-weight: bold;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 820px;
}

h1 {
    color: navy;
    font-family: 'Gazpacho', serif;
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 1em;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 1em 0;
	font-size: 1.2em;
}

a {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: underline;
    margin: 0 0.5em;
    position: relative;
    transition: color 0.3s;
}

a:hover, a:focus {
    color: navy;
    text-decoration: none;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: navy;
    left: 50%;
    bottom: -2px;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

a:hover::after, a:focus::after {
    width: 100%;
    left: 0;
}

@media (max-width: 600px) {
    .container {
        padding: 0 2%;
    }
}
