body {
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 16px;
}
body a {
  color: #0086CA;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
@media (min-width: 1440px) {
  body {
    font-size: 18px;
  }
}
body.dark {
  background-color: #333;
  color: white;
}

.toShow {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.toShow.visible {
  opacity: 1;
}

.container {
  padding: 2em;
}

header {
  position: relative;
}
header .logo {
  width: 50px;
  height: 60px;
  background-color: #ccc;
  margin: 0 auto 1em;
  display: none;
}
header h1 {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
header .separator {
  margin-top: 2em;
  border-bottom: 2px solid #ccc;
}
header .toggle-theme {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
header .toggle-theme img {
  width: 20px;
  height: 20px;
}
header .toggle-theme img.dark {
  width: 18px;
  height: 18px;
}
header .toggle-theme img.hidden {
  display: none;
}
header .toggle-theme img.visible {
  display: block;
}

footer {
  text-align: center;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 300;
  border-top: 2px solid #ccc;
  margin-top: 2em;
}
footer h6 {
  font-size: 0.7em;
  font-weight: 300;
}

.contents-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
  padding: 3em 0;
}
@media (min-width: 768px) {
  .contents-container {
    flex-direction: row;
  }
}
@media (min-width: 1440px) {
  .contents-container {
    padding: 2em 0;
  }
}

.contents {
  animation: slideInContents 2s ease-in-out forwards;
  animation-delay: 1s;
  opacity: 0;
  text-align: center;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .contents {
    width: 55%;
    text-align: left;
    margin-bottom: 0;
  }
}
.contents h2 {
  font-size: 2.2em;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Merriweather", Times, serif;
  margin: 0;
}
.contents h2 span {
  display: block;
  margin: 0.9em 0;
}
.contents .contacts {
  animation: fadeInContacts 1s ease-in-out forwards;
  animation-delay: 3s;
  opacity: 0;
  margin-top: 4em;
}
.contents .contacts p {
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 300;
  font-size: 1em;
}
.contents .contacts p.email {
  display: flex;
  align-items: center;
  gap: 0.8em;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contents .contacts p.email {
    margin: 0;
  }
}
.contents .contacts p.email img {
  height: 2em;
  width: auto;
}

.rectangles {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .rectangles {
    gap: 2rem;
    flex-direction: column;
    width: 45%;
    transform: translateX(-2em);
  }
}

.rectangle {
  width: 25%;
  height: 50px;
  background: transparent;
  position: relative;
  overflow: visible;
  filter: blur(20px) brightness(1.1);
}
@media (min-width: 768px) {
  .rectangle {
    transition: opacity 2s ease;
    opacity: 0;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 2s;
    width: 100%;
    height: 100px;
  }
}

.rectangle-azure {
  background: radial-gradient(circle at 50% 50%, #0086CA 40%, transparent 100%);
  animation-name: fadeInRectangleAzure;
}

.rectangle-sand {
  background: radial-gradient(circle at 50% 50%, #F2C94C 40%, transparent 100%);
  animation-name: fadeInRectangleSand;
}

.rectangle-coral {
  background: radial-gradient(circle at 50% 50%, #E88777 40%, transparent 100%);
  animation-name: fadeInRectangleCoral;
}

@keyframes fadeInRectangleAzure {
  from {
    opacity: 0;
    transform: translateX(10%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRectangleSand {
  from {
    opacity: 0;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(-10%);
  }
}
@keyframes fadeInRectangleCoral {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateX(-20%);
  }
}
@keyframes slideInContents {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInContacts {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
