@font-face {
    font-family: ArchivoBlack;
    src: url(./assets/ARCHIVO-BLACK.TTF);
}

@font-face {
    font-family: ArchivoMedium;
    src: url(./assets/ARCHIVO-MEDIUM.TTF);
}


body{
    margin: 0;
    padding: 0;
    font-family: ArchivoMedium;
    letter-spacing: 2px;
    background-color: #D8D4C7;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.info{
    text-align: center;
}

.logo{
    width: 50%;
}

.text > h1{
    color:#0B4251;
}

@media (max-width:500px) {
    .logo{
        width: 80%;
    }
    .text > h1{
        margin-left: 25px;
        font-size: 15px;
    }    
}