body,
html {
    margin: 0;
    scroll-behavior: smooth;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
}

html {
    font-size: 16px;
}

main {
    overflow-x: hidden;
    background-image: url('img/background-small.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

html * {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content {
    margin-top: 50px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    max-width: 600px;
}

main {
    min-height: 100vh;
}

.container,
.row,
.col-12 {
    height: 100%;
}

.container {
    position: relative;
    z-index: 10;
}

h1,
h2,
h3,
p,
a {
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: left;
    color: #000000;
    margin-bottom: 24px;
}

h2 {
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: left;
    color: #000000;
    margin-bottom: 24px;
}

p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    color: #000000;
    margin-bottom: 24px;
}

a {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

iframe {
    max-width: 100%;
    height: 300px;
}

@media (min-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
    .content{
        padding: 50px;
    }
}