/*font-family: 'Fjalla One', sans-serif;
font-family: 'Source Sans Pro', sans-serif;*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;

}

#home {
    font-weight: normal;
}

#contactus {
    font-weight: bolder;
}

.contactus__container {
    background-color: white;
    height: 60vh;
}

.contactus__header h1 {
    font-family: 'Fjalla One', sans-serif;
    font-weight: lighter;
    color: #303030;
    text-align: center;
    margin: 50px 0;
    font-size: 2.3rem;
    text-shadow: 4px 4px 8px grey;
    padding: 1rem 0 3.3rem 0;
}

.contactus__content {
    width: 80%;
    margin: 10px auto;
    text-align: center;
}

.contactus__info {
    line-height: 30px;
    font-size: 1rem;
    font-weight: 400;
    color: #454545;
}

.contactus__info a {
    text-decoration: none;
    color: #888;
    cursor: pointer;
}

.contactus__info a:hover {
    color: green;
    transform: scale(0.97);
    transition: all 0.3s ease;
}