header {
  background-color: #ddf8db;
  padding: 16px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  header .logo-name {
    margin-bottom: 48px;
    transition: transform 0.2s;
  }
}
header .logo-name img {
  width: 100px;
}
header #nav-items {
  display: flex;
  justify-content: space-around;
  font-size: 18px;
}
header #nav-items a {
  text-decoration: none;
  color: #7940f4;
}

@media screen and (min-width: 700px) {
  header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  #nav-items {
    width: 50%;
  }
}
footer {
  background-color: #ddf8db;
  padding: 16px;
  text-align: center;
}
footer .social-media {
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: transform 0.2s;
}
footer .social-media a i {
  color: rgba(22, 21, 21, 0.664);
  font-size: 50px;
  width: 50px;
}
footer .social-media .info {
  color: rgb(21, 21, 255);
}
footer .social-media .social-media:hover {
  transform: scale(1.5);
}

@media screen and (min-width: 700px) {
  footer .social-media {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
a {
  text-decoration: none;
}

a:link, a:visited {
  text-decoration: none;
}

body {
  margin: 0;
  background-color: #7ebcf1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .strike {
  text-decoration: line-through;
}

.contactbutton {
  background-color: #ddf8db;
  border: none;
  color: rgb(2, 2, 2);
  padding: 16px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  border-radius: 30%;
  cursor: pointer;
}

.contactbutton1 {
  background-color: #ddf8db;
  color: black;
  border: 2px solid #04AA6D;
  border-radius: 30%;
}

.contactbutton1:hover {
  background-color: #04AA6D;
  color: #ddf8db;
}

body {
  font-family: arial;
}

main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
main section .home-image img {
  height: 400px;
  width: 100%;
}

@media screen and (min-width: 310px) {
  main .content {
    text-align: justify;
    padding-right: 40px;
    padding-left: 40px;
  }
}/*# sourceMappingURL=home.css.map */