@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&family=Montserrat&family=Rubik+Maps&display=swap');

body{
    margin:0;
    padding:0;
    box-sizing: border-box;
    border-collapse: collapse;
}

main {
    background-image: url(/img/cover.jpg);
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;   
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11,11,11,.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f3f5f4;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

h1 {
    font-family: 'Rubik Doodle Shadow';
    font-size: 40px;
    text-transform: uppercase;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
}

.contact {
    font-family: 'Rubik Doodle Shadow';
    font-size:1.2rem;
}

a {

    color:#f3f5f4;
}