* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    background-color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: white;
}

section {
    padding: 60px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    box-shadow: 10px 8px 15px 0px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    margin-bottom: 30px;
    border-radius: 20px;
}

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

h1,
h2,
p {
    color: #192655;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.title {
    background-image: url(../images/banner-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    justify-content: center;
}

.banner-title {
    transform: translateY(20%);
}

.big-title {
    font-size: 6.5rem;
    font-weight: 600;
    margin-bottom: 4.5rem;
    text-shadow: 1px 0 10px #241468;
    color: white;
}

.main-title {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 6rem;
    line-height: 1.6em;
}

h1 {
    margin-bottom: 2rem;
    font-size: 3rem;
    text-shadow: 1px 0 10px #241468;
    color: white;
}

h2 {
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

iframe {
    width: 100%;
    height: 650px;
    box-shadow: 10px 8px 15px 0px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 700px) {
    iframe {
        width: 600px;
        height: 500px;
    }
}

@media only screen and (max-width: 480px) {
    iframe {
        width: 340px;
        height: 500px;
    }

    .big-title {
        font-size: 4.5rem;
        margin-bottom: 3.5rem;
    }

    .main-title {
        max-width: 320px;
        line-height: 1.2em;
    }

    .banner-title {
        transform: translateY(10%);
    }

    .main-title h2 {
        font-size: 1.2rem;
    }

    .main-title p {
        font-size: .8rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
        margin-top: .6rem;
        margin-bottom: .6rem;
    }
}