* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

body {
  font-size: 20px;
  background-color: #189a62;
  color: #b1e1d7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.email-container {
  width: 100%;
  /* margin: 20px auto 0; */
  margin: 0 auto 0;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.activities-list {
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 10px;
  padding: 0px;
}

.activities-list li {
  float: left;
  display: block;
}

.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0px;
  margin-top: 15vh;
  margin-bottom: 5vh;
}

tspan {
  font-size: 16.2px;
}

svg {
  animation: rotate 10s linear 0s infinite normal none;
  /* height: 600px;
  width: 600px; */
  height: 65vh;
  width: 65vh;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@media only screen and (max-width: 600px) {
  svg {
    height: 400px;
    width: 400px;
  }
  body {
    font-size: 16px;
  }
  .email-container {
    margin: 20px auto 20px;
  }
}

@media only screen and (max-height: 600px) and (orientation: landscape) {
  svg {
    height: 70vh;
    width: 70vh;
    margin-top: 0vh;
    position: absolute;
    top: 2vh;
  }
  body {
    font-size: 14px;
  }
  .email-container {
    margin: 50vh auto 10px;
  }
}
