/* 
Fuentes:
texto 400
titulos 700
font-family: 'Lato', sans-serif; 
*/
:root {
    --main-color: #fff;
    --primary-color-background: rgba(255, 8, 255, 0.9);
    --second-color-background: rgba(0, 0, 255, 0.9);
}
*, 
*::before,
*::after{
    box-sizing: border-box;
} 
body {
    margin: 0;
    font-size: 0.8em;
    font-family: "Lato", sans-serif;
    color: var(--main-color, #fff);
}
body::after {
    content: "";
    background-image: linear-gradient(to top left,var(--primary-color-background), var(--second-color-background)),
                    url("../images/background.jpg");
    background-size: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}
.logo-main {
    display: block;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
}
.sub-title {
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
}
.main {
    padding: 2em;
}
.wrap-primary {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.wrap-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.about-us{
    display: flex;
    padding: 1em;
    max-width: 400px;
}
.icon-about-us {
    display: block;
    font-size: 5em;
}
.icon {
    color: #fff;
    margin-bottom: 0.2em;
    text-decoration: none;
}
.icon-web {
    fill: white;
}
.icon:hover {
    color: rgb(216, 216, 216);
}
.wrap-about-a{
    display: flex;
    align-items: center;
}
.wrap-about-b{
    padding-left: 2em;
}
.main-title {
    margin-top: 0;
    font-size: 1.3em;
    font-weight: 800;
}
.proyect {
   padding-bottom: 1em; 
   max-width: 180px;
}
.proyect-wrap-a {
    display: flex;
}
.fan-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1em;
    font-size: 2em;
}
.logo-proyect {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
}
.logo-1{
    background-image: url("../images/facisoft.png");
    background-size: 90px;
}
.logo-2{
    background-color: #fff;
    background-image: url("../images/academia.png");
    background-size: 90px;
}
.logo-3{
    background-image: url("../images/guepardi.png");
    background-size: 100px;
}
.container-proyect > h2{
    padding-bottom: 1em;
}
.news {
    display: flex;
    justify-content: center;
    padding-bottom: 5em;
}
.iframe-news {
    border-radius: 0.5em;
}

/* .guepardi .icon:hover{
    color: #fac72e;
}
.academia .icon:hover{
    color: #007ec8;
}
.facisoft .icon:hover {
    color: lime;
} */

@media (min-width: 580px) {
    .wrap-second {
        align-items: flex-start;
        flex-direction: row;
        justify-content: center;
    }
}
@media (min-width: 1000px){
    .wrap-primary {
        margin-left: 0;
        margin-right: 0;
    }
    .proyect {
        max-width: 200px;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    .main-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    body {
        font-size: .9em;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .main {
        padding-left: 0;
    }
    .news {
        padding-bottom: 0;
    }
}
@media (min-width: 1900px){
    .about-us {
        max-width: 100%;
        margin: 0;
    }
    .wrap-about-b {
        width: 100%;
    }
    .wrap-primary {
        max-width: 600px;
    }
    body {
        font-size: 1.2em;
    }
    .proyect {
        max-width: 300px;
        padding-right: 2em;
    }
    .logo-proyect {
        width: 130px;
        height: 130px;
    }
    .logo-1{
        background-size: 100px;
    }
    .logo-2{
        background-size: 100px;
    }
    .logo-3{

        background-size: 130px;
    }
    .logo-main {
        width: 270px;
    }
}