@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default styles */
html, body {
  height: 100%;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default button styles */
button, input{
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Make images responsive */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* primary: #600014, secondary: #00779b */

.logo {
  max-width: 300px;
}

.text {
  font-size: 5rem;
  color: #600014;
}

.text-colored {
  color: #00779b;
}

main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 8px;
}

.long-text {
  max-width: 800px;
  font-size: 14px;
  text-align: center;
  color: #4e4e4e;
}

.vdivider {
  height: 24px;
  width: 2px;
  background-color: #00779b;
}

.contact-box {
  display: flex;
  gap: 16px;
}

.social-media a {
  margin: 0 8px;
  color: #600014;
  font-size: 14px;
}

.contact-info span {
  color:#4e4e4e ;
  margin: 0 8px;
  font-size: 14px;
}

.contact-info span i {
  margin-right: 4px;
  color: #600014;
}

.hdivider {
  max-width: 50%;
  height: 2px;
  width: 100%;
  background-color: #ececec;
  margin: 16px 0;
}

@media(max-width:992px) {
  .logo {
    max-width: 200px;
  }

  .text {
    font-size: 4rem;
    color: #600014;
  }
}

@media(max-width:768px) {
 

  .text {
    font-size: 3rem;
    color: #600014;
  }
}

@media(max-width:576px) {

  .text {
    font-size: 2rem;
    color: #600014;
  }

  .long-text {
    font-size: 12px;
    text-align: center;
    color: #4e4e4e;
  }

  .vdivider {
    width: 50%;
    height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-box {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}