/* styles.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: url('https://www.freepik.com/free-photo/abstract-underwater-blue-ocean-background_13261886.htm') no-repeat center center/cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
}

.logo {
  font-size: 60px;
  font-weight: bold;
  border: 2px solid white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

h1 {
  font-size: 28px;
  margin: 10px 0;
}

hr {
  border: none;
  border-top: 1px solid white;
  margin: 20px 0;
  width: 60%;
}

.subtext {
  font-size: 14px;
  margin-bottom: 30px;
}

.credit {
  font-size: 12px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3CBAB2;
}
