* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
}

.container {
  background: url('images/background.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  color: #fff;
}

.logo {
  max-width: 250px;
  margin-bottom: 30px;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background-color: #ffaa2b;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e6951d;
}

.socials {
  margin-top: 30px;
}

.socials a img {
  width: 30px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.socials a img:hover {
  transform: scale(1.1);
}
