html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    flex: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    text-align: left;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 60px 0 0 0;
    box-sizing: border-box;
    max-width: 100%;
}

.content .gif {
    width: 40%;
}

.content .text {
    width: 60%;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #002060;
}

.contact {
    font-weight: normal !important;
    color: #215f9a;
}

.contact_info {
    color: #467886;
}

.footer {
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1366px) {
    .logo img {
        width: 30%;
    }

    .content .text {
        font-size: 36px;
    }
}

@media (max-width: 1280px) {
    .content .text {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0 0 0;
    }

    .content .gif, .content .text {
        width: 100%;
        padding: 0;
    }

    .gif img {
        width: 40%;
    }

    .content .text {
        margin-top: 20px;
        font-size: 26px;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        padding: 10px;
    }

    .footer {
        padding: 10px;
    }

    .gif img {
        width: 60%;
    }

    .logo img {
        width: 50%;
    }

    .content .text {
        margin-top: 20px;
        font-size: 20px;
    }

    .footer {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .content {
        padding: 0px;
    }

    .content .text {
        margin-top: 0px;
        font-size: 18px;
    }
}