﻿@import 'https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap';
@keyframes pulsate {
  100% {
    text-shadow: 5px 5px 23px;
  }
  0% {
    text-shadow: 5px 5px 17px;
  }
}
@keyframes rotate-gradient {
  from {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@keyframes wheel {
  to {
    opacity: 0;
    top: 10px;
  }
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hue-rotate {
  from {
    filter: hue-rotate(0);
  }
  to {
    filter: hue-rotate(360deg);
  }
}
#sec-cta {
  display: flex;
  flex-direction: column;
}
#sec-cta article h1 {
  margin: 50px 0 12.5px 0;
  display: inline-block;
  font: 400 50px 'Montserrat', sans-serif;
}
#sec-cta article h1 span {
  font-weight: 600;
  letter-spacing: -5px;
  animation: pulsate 250ms ease-in-out infinite alternate;
  text-shadow: 5px 5px 21px;
}
#sec-cta article h1 span a {
  color: inherit;
}
#sec-cta article h1:hover {
  font-weight: 600;
  font-style: italic;
}
#sec-cta article h1:hover span {
  font-weight: 400;
  font-style: normal;
}
#sec-cta article p {
  margin: 0;
  font: 400 18px 'Montserrat', sans-serif;
}
#sec-cta article p:last-of-type {
  margin: 9px 0 0 0;
}
#sec-cta article:nth-of-type(1) h1 {
  margin-top: 0;
  color: #5cedc4;
}
#sec-cta article:nth-of-type(2) {
  text-align: center;
}
#sec-cta article:nth-of-type(2) h1 {
  color: #e06393;
}
#sec-cta article:nth-of-type(3) {
  text-align: right;
}
#sec-cta article:nth-of-type(3) h1 {
  color: #f7ba60;
}
#sec-addressbook {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, #2a0845, #6441a5);
  background-size: 400% 400%;
  animation: rotate-gradient 8s ease-out infinite;
}
#sec-addressbook h1 {
  margin: 0 0 12.5px 0;
  font-size: 50px;
  font-weight: 600;
}
#sec-addressbook h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
}
#sec-addressbook .tabs {
  margin: 50px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
#sec-addressbook .tabs label {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(7px, 1vw, 16px) clamp(14px, 1vw, 32px);
  margin-right: 0.2rem;
  cursor: pointer;
  background-color: #1f1f1f;
  font-weight: bold;
  transition: background ease 0.3s;
}
#sec-addressbook .tabs .tab {
  order: 9;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  display: none;
  padding: 20px;
  color: #000;
  background: #f2f2f2;
  box-shadow: -10px 10px 0px 0px #000;
}
#sec-addressbook .tabs .tab h1 {
  font-size: 25px;
}
#sec-addressbook .tabs .tab a {
  font: 400 18px 'Montserrat', sans-serif;
  color: #000;
}
#sec-addressbook .tabs .tab a:after {
  content: '↗';
}
#sec-addressbook .tabs .tab a:hover {
  text-decoration: underline;
}
#sec-addressbook .tabs .tab a:active {
  font-style: italic;
}
#sec-addressbook .tabs input[type='radio'] {
  display: none;
}
#sec-addressbook .tabs input[type='radio']:checked + label {
  color: #573e70;
  background: #f2f2f2;
}
#sec-addressbook .tabs input[type='radio']:checked + label + .tab {
  display: block;
}
