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

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.page {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
}

.title {
  font-family: 'Times New Roman', Times, serif;
  position: absolute;
  top: 10px;
  font-size: 4rem;
  font-weight: 300;
  /* font-weight: 500; */
  color: #333;
  text-align: center;
  line-height: 1;
  /* letter-spacing: 2px; */
  z-index: 10;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.logo {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  opacity: 1;
}

.corner-image {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #ddd;
  border-radius: 8px;
  z-index: 1;
}

.corner-image.top-left {
  top: 20px;
  left: 20px;
}

.corner-image.top-right {
  top: 20px;
  right: 20px;
}

.corner-image.bottom-left {
  bottom: 20px;
  left: 20px;
}

.corner-image.bottom-right {
  bottom: 20px;
  right: 20px;
}

.social-links {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}

.social-link {
  color: #333;
  text-decoration: none;
  padding: 5px;
  border: 1px solid #333;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background-color: #333;
  color: #fff;
}

.social-icons {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  z-index: 10;
}

.social-icon {
  padding: 8px;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: scale(1.3);
}

.social-icon:nth-child(1):hover {
  color: #E4405F;
}

.social-icon:nth-child(2):hover {
  color: #1DB954;
}
