@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

:root {
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bs-font-sans-serif);
}

.container {
    background-image: url('../images/h9-background-img-1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.left,
.right {
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

h1 .highlight {
    color: #0d6efd;
}

p {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 20px 0;
}

.first_img {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.first_img img,
.second_img img {
    max-width: 100%;
    height: auto;
}

.first_img img {
    animation: moveLeftToRight 5s infinite alternate;
}

@keyframes moveLeftToRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
    }
}

.second_img {
    margin: 20px 0;
}

.SignIn {
    padding: 10px 20px;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    background-color: #0d6efd;
    color: #fff;
    border: 1px solid #0d6efd;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.SignIn:hover {
    background-color: #0b5ed7;
}

@media (max-width: 1000px) {

    .first_img img,
    .second_img img {
        max-width: 80%;
    }
}

@media (min-width: 1001px) {
    .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    h1 {
        font-size: 3rem;
    }

    p {
        font-size: 1.1rem;
    }

    .SignIn {
        padding: 15px 36px;
        font-size: 1.25rem;
    }

    .left,
    .right {
        padding: 40px;
    }

    .right {
        max-width: 600px;
    }

    .first_img {
        flex-direction: row;
        justify-content: flex-start;
    }

    .second_img {
        align-self: center;
    }
}

@media (min-width: 1024px) {
    .container {
        height: 100vh;
    }

    h1 {
        font-size: 5rem;
    }

    p {
        font-size: 1.1rem;
    }
}