* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Playfair Display", serif;
  background-color: #b1b3ae;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-page {
  position: relative;
  min-height: 92vh;
  padding: 40px 10px;
  width: 600px;
  margin: 20px 0;
  max-width: 550px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.landing-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.15);
  background-blend-mode: overlay;
  z-index: -1;
}

.logo {
  max-width: 100%;
  height: 120px;
  border-radius: 50%;
}
h1 {
  color: #ffffff;
  font-weight: bolder;
  font-size: 32px;
  text-align: center;
}
.text {
  color: #ffffff;
  font-weight: bolder;
  font-size: 20px;
}
.news_text {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}

.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  text-decoration: none;
}

.links i {
  font-size: 20px;
}

.links-container a {
  text-decoration: none;
  color: black;
  border: 2px solid white;
  padding: 20px 20px;
  width: 100%;
  margin: 8px 0;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  background-color: white;
  box-shadow: 0 15px 40px rgba(53, 53, 53, 0.3);
}
.links-container a:hover {
  background-color: #dddedb;
  border: 2px solid transparent;
}
.social_media {
  display: flex;
  align-self: center;
  justify-content: center;
}
.socail_media a {
  text-decoration: none;
}
.social_media a i {
  color: white;
  font-size: 35px;
  transition: color 0.3s;
  padding: 10px;
  font-weight: normal;
  margin-top: 10px;
  transition: color 0.3s, transform 0.3s ease;
  will-change: transform;
}

.social_media a i:hover {
  transform: scale(1.1);
}

@media (min-width: 320px) and (max-width: 374px) {
}

@media (min-width: 375px) and (max-width: 413px) {
}

@media (min-width: 992px) and (max-width: 1199px) {
}

@media (max-width: 767px) {
  .links-container a {
    width: 100%;
  }
  .landing-page {
    min-height: 100vh;
    margin: 0px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .links {
    margin: 60px auto;
  }
  .links-container a {
    width: 100%;
    font-size: 25px;
  }
}
