@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");

* {
  font-family: "Source Sans Pro", sans-serif;
  box-sizing: border-box;
  margin: 0;
}
body {
  background-color: #0093e9;
  background-image: linear-gradient(160deg, #0093e9 0%, #80d0c7 80%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
.header {
  padding: 1px;
  width: 100%;
  position: relative;
}
h1 {
  margin: 32px;
  color: #fff;
  font-size: 16px;
}
.link-github {
  position: absolute;
  float: right;
  margin: 32px;
  margin-right: 60px;
  right: 0;
  top: 0;
}
.link-github a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.container {
  height: auto;
  display: flex;
  margin: 3% 15%;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 31px;
  text-align: center;
  width: 200px;
}
.card img {
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 50%;
  transition: linear 0.5s;
}

.card:hover img {
  transform: scale(1.3);
  /* transform: rotate(360deg) */
}

.card a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  margin-top: 10px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#butterfly {
  background-color: white;
}
#butterfly img {
  width: 20px;
}
.box {
  margin-bottom: 20px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.containerImg {
  height: 300px;
}

.img {
  z-index: 2;
  background-image: url("./img/pc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 35%;
}

footer {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  position: relative;
}
.footer-element {
  height: 40px;
  padding: 10px;
}
.footer-element p {
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
}
.footer-element img {
  width: 100px;
  margin-left: 500px;
}
