/*
font-family: 'Berkshire Swash', cursive;
font-family: 'Courgette', cursive;
font-family: 'Chewy', cursive;
font-family: 'Bangers', cursive;
font-family: 'Pacifico', cursive;
font-family: 'Itim', cursive;
font-family: 'Just Me Again Down Here', cursive;
font-family: 'Julee', cursive;
*/





*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body
{
    position: absolute;
    top: 0;
    background: #222;
    min-height: 100vh;
    width: 100%;
    
    display: flex;
}

.centro
{
    color: white;
    width: 55%;
    height: 100%;
    margin: auto;
    
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-content: center;
}

.empresa
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 8%;
}

.empresa img
{
    width: 90%;
    height: 100%;
    margin-bottom: 7%;
}

.empresa p
{
    font-family: 'Pacifico', cursive;
    margin-bottom: 6%;
}

.empresa a
{
    display: block;
    text-decoration: none;
    color: black;
    padding: 7px;
    border-radius: 10px;
    background: green;
    border: 1px solid yellow;
    font-family: arial;
    font-weight: 900;
}

.container
{
    display: flex;
    justify-content: center;
}

.preloader
{
    width: 85%;
    height: 20px;
    background: rgba(255,255,255,0.1);
    font-family: arial;
    
    position: relative;
}

.preloader:before
{
    content: "";
    position: absolute;
    background: green;
    width: 0;
    height: 20px;
    
    animation: preloader 5s infinite;
}

.cerrar
{
    transform: translateY(-100%);
    transition: all 0.5s;
}

@keyframes preloader
{
    100%
    {
        width: 100%;
    }
}

.menu
{
    background: red;
}

.verde
{
    margin-top: 1000px;
    background: green:
}

