body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
}

.main-content {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    margin: 40px 0;
    padding: 40px 0;
    justify-content: center;
    align-items: center;
}

.bg-color {
    background-color: #010049;
    color: #ffffff;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #010049;
    color: #ffffff;
    height: 300px;
    padding: 60px;
}

.header h1 {
    transition: ease-in-out color .15s;
    font-size: 2rem;
}

.header h4 {
    transition: ease-in-out color .15s;
    width: 70%;
    text-align: center;
    font-size: 1rem;
}

h2 {
    text-align: center;
}

.button {
    width: 200px;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border: 3px solid #010049;
    margin-top: 40px;
    border-radius: 50px;
    text-decoration: none;
    color: #010049;
    font-size: 20px;
}

.button:hover {
    background-color: #010049;
    border: 3px solid #ffffff;
    color: #ffffff;
}

hr {
    width: 90%;
    margin-bottom: 40px;
}

.left, .right {
    width: 45%;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 90% !important;
}

p {
    width: 80%;
    margin: 40px auto;
    font-size: 20px;
}

footer {
    padding: 1rem; 
    text-align: center;
    margin: 40px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1080px) {
    .row {
        flex-direction: column;
        justify-content: center;
        margin: 0;
        padding-top: 0;
    }

    .column-reverse {
        flex-direction: column-reverse;
    }

    .header {
        padding: 40px;
    }

    .header h4 {
        width: 95%;
    }

    .mB40 {
        margin-bottom: 40px;
    }

    .left, .right {
        display: flex;
        justify-content: center;
        width: 90%;
    }

    p {
        width: 90%;
    }
}

@media (max-width: 800px) {
    object {
        height: auto;
    }
}