*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
}
header{
    color: white;
    background-color: black;
    z-index: 1;
    box-shadow: 10px 10px 100px red;
}
h1{
    padding: 20px;
    font-family: "Squada One", sans-serif;
    color: #dfe295;
}
#line-pink{
    width: 125px; 
    height: 73.5px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid #df6faa; 
    border-right: 7px solid transparent;
    border-left:7px solid #df6faa;

    position: absolute;
}
#line-gray{
    width: 100px; 
    height: 50px;
    border-bottom: 3px solid #deecf4; 
    border-left:3px solid #deecf4;

    margin-left: 3px;

    position: relative;
    top: 7px;
}
h2{
    margin-top: 80px;
    color: white;
    box-shadow: 0 0 10px 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    padding: 5px;
    border-radius: 30px;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    height: 100%;
    gap: 50px;
    background-image: url(images/DSC_0255.jpg);
    background-size: cover;
    background-position: center;
}
#buttons{
    display: flex;
    flex-direction: column;
    gap: 80px;
    justify-content: center;
}
button{
    width: 300px;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    

    display: flex;
    justify-content: center;
    gap: 10px;
    color: white;

    box-shadow: 10px 10px 10px black;
}
#whatsapp{
    background-color: #21b657;
}
#instagram{
    background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
}
#facebook{
    background-color: #1877F2;
}
button img{
    width: 16px;
}
footer{
    color: white;
    background-color: black;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px;
}
footer #links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    text-align: center;
}
a{
    color: white;
    text-decoration: none;
}

