/* Importar la fuente Raleway */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');


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

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ce1a4d;
}

.container {
    text-align: center;
    padding: 40px;
    background-color: #EBE9E1;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    min-height: 510px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40%;
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    transition: transform 0.3s;
    max-height: 150px;
}

.logo:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: rgba(0, 0, 0);
}

p {
    font-size: 18px;
    font-weight: 300;
    color: #EBE9E1;
}
