#contact {
    background-image: url('../images/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #fff;
    text-align: center;
    justify-content:flex-start;
}

.Email{
  border: none;
  background-color: inherit;
  padding: 5px 10px;
  font-size: inherit;
  font-family: inherit;
  color: rgb(95, 95, 182);
  cursor: pointer;
  display: inline-block;
  border-radius: 12px;
}

.Email:hover {background: #eee;}

#contacts {
  list-style-type: none;
  padding-left: 0;
}

#contacts a{
    color: rgb(255, 255, 255);
}
#contacts a:hover{
    color: rgb(95, 95, 182);
}


#contacts li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}




.section-inner {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.section-inner:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

#contacts {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.2em;
}

#contacts li {
    margin-bottom: 10px;
}

#contacts a {
    color: #ffffff;
    text-decoration: none;
}

#contacts a:hover {
    color: #00bfff;
}

@media (max-width: 600px) {
    #contact {
        padding: 60px 10px;
    }
}