* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #080808;
  --main-color: #9000ff;
  --second-bg-color: #101010;
  --text-color: #ffffff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 18%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.logo {
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}
.logo span {
  text-shadow: 0 0 25px var(--main-color);
}

p a {
  color: rgb(0, 255, 242);
}

.navbar a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--main-color);
  display: none;
}

.buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.buttons .button {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  transition: 0.3s ease-in-out;
  background: var(--main-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 1rem;
  border: 1px solid transparent;
}

.buttons .button a {
  color: var(--text-color);
}

.buttons .button a:hover {
  color: var(--main-color);
}

.buttons .button:hover {
  border: 1px solid var(--main-color);
  background: #fff;
  transition: 0.3s ease-in-out;
  scale: 1.02;
  color: var(--main-color);
}

section {
  min-height: 100vh;
  padding: 10rem 9% 10rem;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15rem;
  background-image: repeating-linear-gradient(
      90deg,
      rgb(0, 0, 0) 0px,
      rgb(0, 0, 0) 20px,
      transparent 20px,
      transparent 21px
    ),
    repeating-linear-gradient(
      135deg,
      rgb(0, 0, 0) 0px,
      rgb(0, 0, 0) 20px,
      transparent 20px,
      transparent 21px
    ),
    linear-gradient(
      90deg,
      hsl(346, 71%, 43%),
      hsl(58, 71%, 43%),
      hsl(130, 71%, 43%),
      hsl(202, 71%, 43%),
      hsl(274, 71%, 43%)
    );
}

.home-content {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  text-align: left;
  justify-content: center;
  margin-top: 3rem;
  gap: 1rem;
}

span {
  color: var(--main-color);
}

.logo span {
  color: var(--main-color);
}

.home-content h3 {
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: 3.5rem;
}

.home-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1;
}

.home-img {
  border-radius: 50%;
}

.home-img img {
  position: relative;
  top: 3rem;
  width: 26vw;
  height: 26vw;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 25px var(--main-color);
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.home-img img:hover {
  box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color),
    0 0 100px var(--main-color);
}

.home-content p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  max-width: 1000px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  font-size: 2.5rem;
  border-radius: 1rem;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}

.social-icons a:hover {
  color: var(--text-color);
  transform: scale(1.3) translateY(-5px);
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 8px;
  font-size: 1.6rem;
  color: var(--text-color);
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: o.3s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

.text-animation {
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
}

.text-animation span {
  position: relative;
}

.text-animation span::before {
  content: "Journalist";
  color: var(--main-color);
  animation: words 20s infinite;
}

.text-animation span::after {
  content: "";
  background-color: var(--bg-color);
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  border-left: 3px solid var(--bg-color);
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
  to {
    border-left: 2px solid var(--main-color);
  }
}

@keyframes words {
  0%,
  20% {
    content: "Effective Vibes";
  }
  21%,
  40% {
    content: "Effective Vibes";
  }
  41%,
  60% {
    content: "Effective Vibes";
  }
  61%,
  80% {
    content: "Effective Vibes";
  }
  81%,
  100% {
    content: "Effective Vibes";
  }
}

@keyframes typing {
  10%,
  15%,
  30%,
  35%,
  50%,
  55%,
  70%,
  75%,
  90%,
  95% {
    width: 0;
  }
  5%,
  20%,
  25%,
  40%,
  45%,
  60%,
  65%,
  80%,
  85% {
    width: calc(100% + 8px);
  }
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  background-image: radial-gradient(
      circle at 32% 84%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 3%,
      transparent 3%,
      transparent 100%
    ),
    radial-gradient(
      circle at 87% 12%,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.03) 3%,
      transparent 3%,
      transparent 100%
    ),
    radial-gradient(
      circle at 22% 99%,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.03) 3%,
      transparent 3%,
      transparent 100%
    ),
    radial-gradient(
      circle at 80% 86%,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(255, 255, 255, 0.01) 3%,
      transparent 3%,
      transparent 100%
    ),
    radial-gradient(
      circle at 47% 59%,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(255, 255, 255, 0.01) 7%,
      transparent 7%,
      transparent 100%
    ),
    radial-gradient(
      circle at 79% 100%,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.03) 7%,
      transparent 7%,
      transparent 100%
    ),
    radial-gradient(
      circle at 71% 67%,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.03) 7%,
      transparent 7%,
      transparent 100%
    ),
    radial-gradient(
      circle at 36% 12%,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.03) 7%,
      transparent 7%,
      transparent 100%
    ),
    radial-gradient(
      circle at 45% 99%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 7%,
      transparent 7%,
      transparent 100%
    ),
    radial-gradient(
      circle at 76% 89%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 7%,
      transparent 7%,
      transparent 100%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 5%,
      transparent 5%,
      transparent 100%
    ),
    radial-gradient(
      circle at 26% 60%,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(255, 255, 255, 0.01) 5%,
      transparent 5%,
      transparent 100%
    ),
    radial-gradient(
      circle at 55% 41%,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(255, 255, 255, 0.01) 5%,
      transparent 5%,
      transparent 100%
    ),
    radial-gradient(
      circle at 58% 10%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 5%,
      transparent 5%,
      transparent 100%
    ),
    radial-gradient(
      circle at 7% 21%,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(255, 255, 255, 0.01) 5%,
      transparent 5%,
      transparent 100%
    ),
    radial-gradient(
      circle at 12% 81%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.02) 5%,
      transparent 5%,
      transparent 100%
    ),
    radial-gradient(
      circle at 25% 65%,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.03) 5%,
      transparent 5%,
      transparent 100%
    ),
    linear-gradient(0deg, rgb(23, 0, 42), rgb(3, 18, 90));
}

.about.about-2 {
  background-image: repeating-linear-gradient(
      45deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      112.5deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      22.5deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      67.5deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      45deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      157.5deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      112.5deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      90deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      90deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      135deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      67.5deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      135deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      90deg,
      hsla(253, 0%, 98%, 0.03) 0px,
      hsla(253, 0%, 98%, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(90deg, rgb(13, 8, 66), rgb(96, 0, 66));
}

.about.about-3 {
  background-image: repeating-linear-gradient(
      0deg,
      rgba(161, 174, 23, 0.12) 0px,
      rgba(161, 174, 23, 0.12) 1px,
      transparent 1px,
      transparent 13px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(161, 174, 23, 0.12) 0px,
      rgba(161, 174, 23, 0.12) 1px,
      transparent 1px,
      transparent 13px
    ),
    linear-gradient(90deg, rgb(9, 0, 22), rgb(55, 0, 86));
}

.about.about-4 {
  background-image: linear-gradient(
      45deg,
      rgba(22, 31, 43, 0.5) 0%,
      rgba(22, 31, 43, 0.5) 12.5%,
      rgba(53, 28, 54, 0.5) 12.5%,
      rgba(53, 28, 54, 0.5) 25%,
      rgba(83, 25, 65, 0.5) 25%,
      rgba(83, 25, 65, 0.5) 37.5%,
      rgba(114, 22, 76, 0.5) 37.5%,
      rgba(114, 22, 76, 0.5) 50%,
      rgba(144, 20, 86, 0.5) 50%,
      rgba(144, 20, 86, 0.5) 62.5%,
      rgba(175, 17, 97, 0.5) 62.5%,
      rgba(175, 17, 97, 0.5) 75%,
      rgba(205, 14, 108, 0.5) 75%,
      rgba(205, 14, 108, 0.5) 87.5%,
      rgba(236, 11, 119, 0.5) 87.5%,
      rgba(236, 11, 119, 0.5) 100%
    ),
    linear-gradient(
      135deg,
      rgb(188, 0, 159) 0%,
      rgb(188, 0, 159) 12.5%,
      rgb(173, 4, 150) 12.5%,
      rgb(173, 4, 150) 25%,
      rgb(158, 7, 141) 25%,
      rgb(158, 7, 141) 37.5%,
      rgb(143, 11, 132) 37.5%,
      rgb(143, 11, 132) 50%,
      rgb(129, 15, 124) 50%,
      rgb(129, 15, 124) 62.5%,
      rgb(114, 19, 115) 62.5%,
      rgb(114, 19, 115) 75%,
      rgb(99, 22, 106) 75%,
      rgb(99, 22, 106) 87.5%,
      rgb(84, 26, 97) 87.5%,
      rgb(84, 26, 97) 100%
    );
}

.about.about-5 {
  background-image: repeating-linear-gradient(
      45deg,
      rgba(193, 249, 252, 0.12) 0px,
      rgba(193, 249, 252, 0.12) 1px,
      transparent 1px,
      transparent 13px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(193, 249, 252, 0.12) 0px,
      rgba(193, 249, 252, 0.12) 1px,
      transparent 1px,
      transparent 13px
    ),
    linear-gradient(90deg, rgb(215, 32, 135), rgb(223, 206, 104));
}

.about .about-content,
.about .image-content {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 1.5rem;
  max-width: 1235px;
  width: 100%;
}

.content {
  display: flex;
  align-items: start;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
  width: 100%;
}

.about .about-content .content p {
  font-size: 1.8rem;
  padding: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
}

.about .about-content .about-img,
.about .image-content .about-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.about .about-content .about-img {
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.2rem;
}

.about .about-content img,
.about .image-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 11px;
  background: #fff;
}

.about .image-content .content-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.3rem;
}

.about .image-content .content-img .image7 {
  object-fit: cover;
}

.heading {
  font-size: 3.5rem;
  margin: 2rem 1rem;
  border-bottom: 2px solid var(--main-color);
  text-align: left;
  align-items: start;
  width: 100%;
  padding-bottom: 1rem;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

::-webkit-scrollbar-track {
  background-color: var(--bg-color);
  width: 50px;
}

.overview {
  background: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.overview h2 {
  margin-bottom: 5rem;
  color: white;
}

.overview-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.overview-box {
  background-color: var(--main-color);
  height: 380px;
  border-radius: 3rem;
  border: 5px solid transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.overview-box:hover {
  background: white;
  color: var(--main-color);
  border: 5px solid var(--main-color);
  transform: scale(1.02);
}

.overview-box .overview-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-height: 200px;
  justify-content: center;
  align-items: baseline;
  padding: 5em;
}

.overview-info h4 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.overview-info p {
  font-size: 1.6rem;
  font-weight: 400;
  max-height: 100px;
  margin: auto;
}

.contact {
  background-color: var(--bg-color);
}

.contact h2 {
  margin-bottom: 3rem;
  color: white;
}

.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact form .input-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-color);
  background: var(--bg-color);
  border-radius: 0.8rem;
  border: 2px solid var(--main-color);
  margin: 1rem 0;
  resize: none;
}

.contact form .btn {
  margin-top: 2rem;
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  width: 100%;
  padding: 40px 1rem;
  background-image: linear-gradient(
      112deg,
      rgba(177, 133, 231, 0.46) 0%,
      rgba(177, 133, 231, 0.46) 14.286%,
      rgba(183, 112, 233, 0.46) 14.286%,
      rgba(183, 112, 233, 0.46) 28.572%,
      rgba(188, 90, 234, 0.46) 28.572%,
      rgba(188, 90, 234, 0.46) 42.858%,
      rgba(194, 69, 236, 0.46) 42.858%,
      rgba(194, 69, 236, 0.46) 57.144%,
      rgba(199, 48, 238, 0.46) 57.144%,
      rgba(199, 48, 238, 0.46) 71.43%,
      rgba(205, 26, 239, 0.46) 71.43%,
      rgba(205, 26, 239, 0.46) 85.716%,
      rgba(210, 5, 241, 0.46) 85.716%,
      rgba(210, 5, 241, 0.46) 100.002%
    ),
    linear-gradient(
      157deg,
      rgb(73, 186, 245) 0%,
      rgb(73, 186, 245) 14.286%,
      rgb(64, 170, 226) 14.286%,
      rgb(64, 170, 226) 28.572%,
      rgb(55, 154, 206) 28.572%,
      rgb(55, 154, 206) 42.858%,
      rgb(46, 138, 187) 42.858%,
      rgb(46, 138, 187) 57.144%,
      rgb(37, 121, 168) 57.144%,
      rgb(37, 121, 168) 71.43%,
      rgb(28, 105, 148) 71.43%,
      rgb(28, 105, 148) 85.716%,
      rgb(19, 89, 129) 85.716%,
      rgb(19, 89, 129) 100.002%
    );
}

.footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: white;
}

.footer .social a {
  font-size: 25px;
  color: white;
  border: 2px solid white;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}

.footer .social a:hover {
  transform: scale(1.2) translateY(-10px);
  background-color: white;
  color: var(--main-color);
}

.footer ul {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul li a {
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
}

.footer ul li a:hover {
  border-bottom: 3px solid white;
}

.footer ul li {
  display: inline-block;
  padding: 0 15px;
}

.footer .copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  color: white;
}

@media (max-width: 1285px) {
  html {
    font-size: 55%;
  }
  .overview-container {
    padding-bottom: 7rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 5rem;
  }
  .header {
    padding: 3rem 9%;
  }
}

@media (max-width: 991px) {
  header {
    padding: 2rem 3%;
  }
  section {
    padding: 10rem 3% 2rem;
  }

  .home {
    gap: 10rem;
  }

  .overview {
    padding-bottom: 7rem;
  }

  .footer {
    padding: 2rem 3%;
  }
}

@media (max-width: 935px) {
  .about .about-content {
    flex-direction: column;
  }

  ::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 895px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 70%;
    padding: 1rem 3%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom-left-radius: 2rem;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
    color: white;
  }

  .home {
    flex-direction: column;
    margin: 5rem 4rem;
    gap: 2rem;
  }

  .home-content h3 {
    font-size: 2.6rem;
  }

  .home-content h1 {
    font-size: 8rem;
    margin-top: 3rem;
  }

  .home-content p {
    max-width: 600px;
    margin: 0 auto;
  }

  .home-img img {
    width: 50vw;
    height: 50vw;
  }

  .overview h2 {
    margin-bottom: 3rem;
  }

  .overview-box .overview-info {
    padding: 1.5em;
  }

  .overview-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .home-content h1 {
    font-size: 5rem;
    margin-top: 3rem;
  }

  .overview .heading,
  .contact .heading {
    font-size: 5rem;
  }

  .logo {
    font-size: 2rem;
  }

  .heading {
    font-size: 3rem;
    text-align: left;
    padding-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .home {
    margin: 3rem 4rem;
  }

  .home-content h1 {
    font-size: 4.5rem;
    margin-top: 3rem;
  }

  .overview .heading,
  .contact .heading {
    font-size: 4.5rem;
  }
}

@media (max-width: 440px) {
  .home,
  .contact {
    margin: 1rem;
  }

  .home-content h1 {
    font-size: 3.5rem;
    margin-top: 3rem;
  }

  .overview .heading,
  .contact .heading {
    font-size: 3.5rem;
  }
  .heading {
    font-size: 2.5rem;
    font-weight: 500;
  }
}
