@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    font-family: "Open Sans", sans-serif;
    color: #000;
    background-color: #FFF;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    line-height: 150%;
}

.txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

h2 {
    font-weight: 600;
    color: #ae1b21;
}

img {
    max-width: 100%;
}

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

a:hover {
    color: #ae1b21;
}

@media (min-width: 768px) {
    body {
        margin-top: 50px;
    }
    .txt {
        margin-top: 0px;
    }
}

