@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
body {
    margin: 0;
    font-family: Roboto, "sans-serif";
}
a {
    color: #fe4350;
    text-decoration: none;
}
.full-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url("https://res.cloudinary.com/demqtev8j/image/upload/v1619792652/redwood/wood-grain-bg_vxjpfp.svg");
    background-size: 200%;
    background-position: center center;
}
@media only screen and (min-width: 800px) {
    .full-page {
        background-size: 110%;
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

footer {
    background-color: #fe4350;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 5px;
}

.main-logo {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info {
    color: white;
}
.contact-info a {
    color: white;
}
.contact-info h1,
.contact-info h2,
.contact-info h3,
.contact-info h4,
.contact-info h5 {
    margin-bottom: 0;
    margin-top: 0;
}
.contact-info h2 {
    font-size: 1.1rem;
}
.contact-info h3 {
    font-size: 1rem;
}
.contact-info h4 {
    font-size: 0.9rem;
}
.contact-info h5 {
    font-size: 0.8rem;
}

.weight-light {
    font-weight: 400;
}

@media only screen and (min-width: 800px) {
    .contact-info h2 {
        font-size: 1.3rem;
    }
    .contact-info h3 {
        font-size: 1.2rem;
    }
    .contact-info h4 {
        font-size: 1.1rem;
    }
    .contact-info h5 {
        font-size: 1rem;
    }
}