@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;900&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    padding: 0;
    margin: 0;
    background-color: #e1e1e1;
}
a {
    text-decoration: none;
    color: #681726;
}
main {
    display: flex;
    justify-content: center;
}
.content {
    width: 100%;
    max-width: 700px;
    padding: 20px 30px 0 30px;
    background: url('../images/texture-bg.jpg') no-repeat center ;
    background-size: 100% 100%;
    box-shadow: 0 0 50px -10px;
}
.header {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}
.logo {
    width: 60%;
    height: 100%;
}
.logo img {
    width: 100%;
}
.image {
    width: 50%;
    margin: 10px -25px 0 0 ;
}
.image img {
    width: 100%;
    height: 100%;
}
.instagram {
    margin: 20px 5% 0 0;
    max-width: 180px;
}
.instagram a {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 11px;
    line-height: 12px;
    border: 1px solid #681726;
    border-radius: 15px;
    text-transform: uppercase;
    padding: 5px 10px;
    
} 
.instagram img {
    width: 22px;
    height: 100%;
    margin-right: 10px;
}
.links {    
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
}
.links a {
    font-size: 13px;
    line-height: 16px;
    width: 70%;
    max-width: 250px;
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px ;
    margin-bottom: 40px;
    background-color: #eae6e5;
    border-radius: 15px;
    text-transform: uppercase;
    background: #eae6e5 url('../images/abrir-botao.png') no-repeat 94% 50%;
    background-size: 21px 21px;
    cursor: pointer;
    box-shadow: 0px 18px 40px -17px rgba(0,0,0,1);
}
.links a:first-child {
    box-shadow: 0px 18px 40px -14px rgba(0,0,0,1);
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer img {
    width: 105%;
    margin-left: -7%;
    margin-bottom: -1px;
}
.footer p {
    width: 75%;
    max-width: 280px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    background-color: #681726;
    color: white;
    box-shadow: 0px 18px 35px -6px rgba(0,0,0,1);
    margin-bottom: -10px;
    padding: 3px 0;
}
.footer p img {
    width: 12px;
    margin: 0 2px;
}
@media (min-width: 501px) {
    .links {
        margin-top: -10px;
    }
    .links a {
        max-width: 400px;
    }
    .footer p {
        max-width: 330px;
    }
}

@media (min-width: 700px) {
    .instagram {
        max-width: 200px;
    }
    .instagram a,
    .footer p {
        font-size: 13px;
    }
    .instagram a {
        line-height: 15px;
    }
    .links a {
        font-size: 15px;
    }
    .image {
        margin-bottom: -5px;
    }
    
}