:root {
    --ft-xl: clamp(2rem, 4vw + 1rem, 2.5rem);
    --ft-bg: 1.2rem;
    --ft-nm: 1.2rem;
    --ft-sm: 1rem;
}

body {
    font-family: 'Neue Haas Grotesk Text Pro', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}

a {
    display: block;
    text-decoration: none;
  }
  a:link {
    text-decoration: none;
  }
  a:visited {
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
  }
  a:active {
    text-decoration: none;
  }

main {
    display: flex;
    background-image: url(../img/fundomax.png);
    min-height: 100vh;
}

@media (min-width: 45em) {
    main {
        height: 80vh;
    }
}

.content {
    margin: auto;
    padding: .5rem;
}

.text-content {
    margin-block-start: 4em;
    margin-block-end: 4em;
}

@media (min-width: 45em) {
    .text-content {
        margin-block-start: 8em;
        margin-block-end: 8em;
    }
}

.text-content > h1 {
    font-size: var(--ft-xl);
    font-weight: bold;
}

.text-content > p {
    font-size: var(--ft-nm);
    font-weight: bold;
}

.buttons-content {
    display: grid;
    gap: .5rem;
    grid-auto-flow: row;
}

@media (min-width: 45em) {
    .buttons-content {
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin: auto;
    }
}

.btn {
    font-size: var(--ft-bg);
    background-color: #0049c8;
    text-transform: uppercase;
    font-weight: bold;
    flex: 1;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.btn > a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-content {
    background-color: #eeeeee;
    text-align: left;
    border-radius: 5px;
    padding: 1em;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

@media (min-width: 45em) {
    .info-content {
        padding: 2em;
        margin-block-end: 8em;
    }
}

.address {
    color: #4e4e4e;
    font-size: var(--ft-sm);
    text-transform: uppercase;
    font-weight: bold;
    word-break: break-all;
}

footer {
    background-color: #efefef;
    padding: 1em;
}

@media (min-width: 45em) {
    footer {
        padding: 2em;
        height: 20vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
}