* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: white;

    transition: .4s;
    border-radius: 4px;
}

a:hover {
    background-color: white;
    color: black;
}

main {
    position: relative;

    
    width: 100%;
    min-height: 100vh;
    height: auto;
    
    background: url('../img/background3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cidade {
    text-align: center;
    margin-top: 20px;
    color: white
}

.img-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 1;
}

.img-logo img {
    width: 100%;
}

.cover {
    position: absolute;
    z-index: 2;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .7);
}

.center {
    max-width: 800px;
    padding: 0 2%;
    margin: 0 auto;

    position: relative;
    z-index: 3;
}

.logo {
    text-align: center;
    padding: 30px 0;
}

.logo img {
    max-width: 400px;
    width: 100%;
}

.icon a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px 0;

    font-size: 20px;
}

.icon p {
    margin-left: 10px;
}

.box-icon {
    width: 100%;
}