* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', Geneva, Tahoma, sans-serif;
}
/* Custom properties for colours */
:root {
    --clr-logo-blue: rgb(45, 105, 175);
}

/* Basic styles */
p {
    font-size: 1.1em;
    line-height: 1.5em;
    text-align: center;
    max-width: 75vw;
    padding: 15px;
}

img {
    display: block;
    max-width: 320px;
    margin: 0 auto;
}

a {
    color: var(--clr-logo-blue);
    text-decoration: none;
    
}

section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobile View*/
@media only screen and (max-width: 650px) {
    p {
        max-width: 100vw;
    } 
}