body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url("background.jpg") no-repeat center center fixed;
  background-size: cover;  /* makes the image cover the whole screen */
  color: white;
  text-align: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}


.container {
  max-width: 500px;
  padding: 20px;
}

.logo {
  width: 240px;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
}

p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.social-links a {
  margin: 0 10px;
  font-size: 40px;   /* icon size */
  color: white;      /* default color */
  text-decoration: none;
  transition: 0.3s;
}

.social-links a.youtube:hover {
  color: #ff0000; /* YouTube red */
}

.social-links a.instagram:hover {
  color: #e1306c; /* Instagram pink */
}

