body {
    font-family: 'Montserrat';
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-size: 2.5rem;
}

span > h1, span > p  {
    margin: 0;
}

p {
    font-size: 24px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}


#construction-text {
    padding-left: 5rem;
}

#construction-text__paragraphs {
    padding-top: 1rem;
}

.contact-buttons {
    padding-top: 1rem;
    display: flex;
}

img {
    margin-right: 1rem;
}

#rotating-logo {
    animation: rotation 20s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    } 
    to {
        transform: rotate(360deg);
    }
}

/* ----- MEDIA QUERIES ----- */

 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        display: grid;
    }

    h1 {
        font-size: 1.7rem;
    }

    p {
        font-size: 1.25rem;
    }
 
    .container {
        display: block;
        align-items: flex-start;
    }
    
    .row {
        display: grid;
        justify-content: center;
    }

    .image-wrapper {
        margin: 4rem 0 2rem;
    }

    #rotating-logo {
        margin: 0;
        width: 100px;
        height: 100px;
    }

    #construction-text {
        padding: 0 2.5rem;
    }

    .contact-buttons > a > img {
        width: 50px;
        height: 50px;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

} 