@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
body,
h2,
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-size: 1.4vw;
    color: #343534;
}

section {
    max-width: 95vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 25em;
    display: block;
    margin: 0 auto;
}

h2 {
    border-bottom: solid 2px #343534;
    padding: 0 0.5em 0.3em;
    text-transform: uppercase;
}

p {
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media(max-width:991px) {}

@media(max-width:761px) {
    img {
        width: 65em;
    }
    h2,
    p {
        font-size: 4em;
    }
    section {
        max-width: 90vw;
    }
}