@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap');
*{
    box-sizing: border-box;
    font-family: 'Work Sans';
    margin: 0;
    padding: 0;
}
html{
    /* me permite deslizar cuando hago clic en los links del menu */
    scroll-behavior: smooth;
    background-color: #1e2224;
}
/* SECCION I N I C I O */
.main{
    background: linear-gradient(to top, rgba(36, 41, 44, 0.8), rgba(30,35,38,1)),
    url(bg.png);
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}
.main .main-banner{
    padding: 20px;
    background-color: #1e2224;
    max-width: 400px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}
.main .main-banner img{
    margin-top: 40px;
    border: 10px solid #da7812;
    display: block;
    width: 80%;
    margin: auto;
    border-radius: 100%;
}
.main .main-banner h1{
    margin-top: 40px;
    font-size: 42px;
    font-family: 'Righteous';
}
.main .main-banner h2{
    font-size: 15px;
    font-weight: normal;
}
.main .main-banner .socials a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}
.main .main-banner .socials a:hover{
    background-color: #da7812;
}
