@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
}

.background {
    background-image: url('./assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: end;
    align-items: center;
}

.content {
    width: 50%;
    margin-bottom: 15%;
    padding: 4.5rem;
    box-sizing: border-box;
}

.content p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.logo {
    width: 260px;
    margin-left: -1.3rem;
}

.logos {
    width: 470px;
    position: absolute;
    right: 3%;
    bottom: 3%;
}

@media (max-width: 1024px) {
    .background {
        justify-content: center;
    }

    .content {
        padding: 0;
        width: 90%;
        text-align: center;
    }

    .logo {
        width: 50%;
        margin-top: -3rem;
        margin-left: 0;
    }

    .content p {
        font-size: 1rem;
        text-align: center;
    }

    .logos {
        width: 90%;
        right: 5%;
    }
}