@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background: url(../images/bg.jpg) #222 no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.principal > h1 {
    font-size: 100px;
    color: white;
    font-family: Palatino Linotype;
    letter-spacing: 1.4px;
    text-align: center;
}

.frase > p {
    color: white;
    font-style: italic;
    font-family: Palatino Linotype;
    text-align: center;
    padding: 10px;
}

.frase::after,
.frase::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: white;
    margin: 0px auto;
}

@media all and (max-width: 720px) {
    .principal > h1 {
        font-size: 50px;
    }
}

.icons {
    width: 60%;
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

a {
    color: white;
    font-size: 30px;
    transition: all .2s;
}

a:nth-child(1):hover {
    color: #0077B5;
}

a:nth-child(2):hover {
    color: #D54B3D;
}

a:nth-child(3):hover {
    color: #4A65A0;
}

a:nth-child(4):hover {
    color: black;
}

/* a:nth-child(5):hover {
    color: #48C857;
} */

a:nth-child(5):hover {
    color: #DB3172;
}
