

@font-face {
    font-family: 'Acumin';
    src: url(../fonts/Acumin-Pro-Condensed-Black.ttf);
    font-family: 'Acumin', sans-serif;
}

body{
    min-height: 100vh;
    color: #fff;
    background-image: url("../img/benthos-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover ;
    font-family: 'Acumin';
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

h1{
    font-size: 48px;
}

.rombo-container{
    margin-top: 1.5em;
    column-gap: 12px;
}

.rombo{
    background-color: #000;
    border: 1px solid #fff;
    transform: rotate(45deg);
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

a:hover > i,
a:focus > i{
    color: #fff;
}
i{
    color: #fff;
    transform: rotate(-45deg);
    font-size: 14px;
}

.logo-locale{
    margin-bottom: 10px;
}

@media screen and (max-width: 578px){
    body{
        background-image: url("../img/benthos-bg-mobile.jpg");
    }
}