body{
    margin: 0;
    padding: 0;
}
.container{
    color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('https://assets.seedprod.com/19.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
h1{
  width: 300px; 
  margin: 0; 
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
h2{
    font-size: 56px;
    font-family: 'Dancing Script', sans-serif;
    text-align: center;
    margin: 0;
}
img{
    width: 100%;
}
.social a{
    color: black;
    width: auto;
    height: auto;
    margin: 0 10px 0 0;
    background-color: transparent;
}
.social a i{
    color: white;
    font-size: 25px;
    transition: all 0.5s;
}
.social a:hover i{
    color: rgb(235, 235, 235);
}