*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  font-size: 16px;
}

main {
    background-image: url(../images/background.jpg);
    background-repeat: repeat;
    height: 100vh;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

a[href^="tel:"] {
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-bottom: 4px solid #000;
}

.content-wrapper {
    border: 4px solid #000;
}

.content {
    background-color: #fff;
    padding: 30px 20px;
}

.content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.content p {
    font-size: 22px;
    line-height: 3.5rem;
    max-width: 624px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .content p {
        font-size: 26px;
    }
}

.footer {
    background-color: #000;
    padding: 30px 20px;
    text-align: center;
    line-height: 3.5rem;
}

.footer a,
.footer p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .footer a,
    .footer p {
        font-size: 36px;
    }
}