body{
    background-color: gray;
    background-image: url(haha.png) ;
    background-size: cover  h;
    background-repeat: no-repeat;
    background-position: center;
}

a{
    list-style-type: none;
    float: right;
    margin: 0 10px;
    border: 1px solid;
    border-radius: 50px;
    padding: 5px;
    color: white;
    text-decoration: none;
}

li:hover{
    color: palevioletred;
    position: static;
    font-size: large;
    cursor: pointer;
}

.body{
    float: left;
    margin-left: 100px;
    margin-top: 150px;
    background-repeat: no-repeat;
    background-position: right top;
}

h1{
    margin: 5px 0;
    color: white;
}

p{
    font-size: 20px;
    color: white;
}

button{
    padding: 5px;
    border-radius: 50px;
    border: 1px solid;
    background-color: violet;
}
.Message-Container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;

}
form{
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px black;
}
label{
    display: block;
    margin-bottom: 8px;
}
input, textarea{
    width: 100%;
    padding: 8px;
    margin-bottom: 4px;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 4px;
}
#submit{
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}
#submit:hover{
    background-color: blueviolet;
}

.about{
    float: left;
    margin-top: 150px;
    padding-left: 100px;
}


  * {
    box-sizing:border-box;
    margin: 0;
    padding: 0;
  }
  
  
  .gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-image img {
    height: 250px;
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
  }
  
  .img-box {
    box-sizing: content-box;
    margin: 8px;
    height: 250px;
    width: 350px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
  }
  
  
  
  .img-box:hover img { 
    transform: scale(1.1);
  }
  
  .img-box:hover .transparent-box {
    background-color:rgba(0, 0, 0, 0.5);
  }
  
  
  
  .img-box:hover {
    cursor: pointer;
  }
  
  
  .opacity-low {
    opacity: 0.5;
  }
  ul {
    width: 300px;
    height: 100px;
  position:absolute;
  top:60%;
  right: 60%;
  transform:translate(-50%,-50%);
  margin:0;
  padding:0;
  display:flex;
}
ul li {
  list-style:none;
}
ul li a {
  display:block;
  position:relative;
  width:100px;
  height:100px;
  line-height:100px;
  font-size:40px;
  text-align:center;
  text-decoration:none;
  color:#ffffff;
  margin: 0 30px;
  transition:.5s;
}
ul li a span {
  position:absolute;
  transition: transform .5s;
}

ul li a span:nth-child(1) {
  top:0;
  left:0;
  transform-origin: right;
}
ul li a:hover span:nth-child(1) {
  transform: scaleX(0);
  transform-origin: left;
  transition:transform .5s;
}

ul li a span:nth-child(3) {
  bottom:0;
  left:0;
  transform-origin: left;
}
ul li a:hover span:nth-child(3) {
  transform: scaleX(0);
  transform-origin: right;
  transition:transform .5s;
}

ul li a span:nth-child(2),
ul li a span:nth-child(4){
  width:3px;
  height:100%;
  background:#404040;
}
ul li a span:nth-child(2) {
  top:0;
  left:0;
  transform:scale(0);
  transform-origin: bottom;
}
ul li a:hover span:nth-child(2) {
  transform: scale(1);
  transform-origin: top;
  transition:transform .5s;
}
ul li a span:nth-child(4) {
  top:0;
  right:0;
  transform:scale(0);
  transform-origin: top;
}
ul li a:hover span:nth-child(4) {
  transform: scale(1);
  transform-origin: bottom;
  transition:transform .5s;
}

.facebook:hover {
  color: #3b5998;
}
.facebook:hover span { 
  background: #3b5998;
}
.twitter:hover {
  color: #1da1f2;
}
.twitter:hover span { 
  background: #1da1f2;
}
.instagram:hover {
  color: #c32aa3;
}
.instagram:hover span { 
  background: #c32aa3;
}
.google:hover {
  color: #dd4b39;
}
.google:hover span { 
  background: #dd4b39;
}
ul li a .twitter {
  color: #1da1f2;
}
ul li a:hover:nth-child(3) {
  color: #c32aa3;
}
ul li a:hover:nth-child(4) {
  color: #dd4b39;
}