*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%; /* 1rem = 10px */
}

body{
    font-family: "Lato", sans-serif;
    position: relative;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
}

a {
    color: currentColor;
    text-decoration: none;
}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
}

.main-title h1{
    font-size: 7rem;
    font-weight: 800;
}

.main-title h2{
    font-size: 4rem;
    font-weight: 300;
}

.background-image {
    object-position: top;
}

.footer {
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: #f5f5f5;
    font-size: 1.3rem;
}

/* Media Queries */

@media (min-width: 640px){
    .main-title h1{
        font-size: 5rem;
        font-weight: 700;
    }

    .main-title h2{
        font-size: 3rem;
        font-weight: 300;
    }   
}
    
@media (min-width: 768px){
    .main-title h1{
        font-size: 6rem;
        font-weight: 800;
    }
    
    .main-title h2{
        font-size: 4rem;
        font-weight: 300;
    }
}
    
@media (min-width: 1024px){
    .main-title h1{
        font-size: 7rem;
        font-weight: 900;
    }
    
    .main-title h2{
        font-size: 5rem;
        font-weight: 300;
    } 
}
    
@media (min-width: 1200px){
    .main-title h1{
        font-size: 8rem;
        font-weight: 900;
    }
    
    .main-title h2{
        font-size: 5rem;
        font-weight: 300;
    }

    .main-title{
        text-align: center;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
}