/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;


  font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;

}

body {
  background: #000;

  background-image: url("chalkboard.jpg");
  background-size: cover;

  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.container {
  text-align: center;
  padding: 20px;
}

/* Logo */
.logo {
  width: 200px;
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

/* Title */
h1 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
    line-height: 2.4rem;
}

h1 span{
    font-size: 2rem;
}

/* Social links */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s ease;
}

.socials svg{
    height: 30px;
}

.socials a:hover {
  opacity: 0.7;
}

/* Mobile scaling */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  h1 span{
    font-size: 1rem;
    }

  .socials svg {
    height: 24px;
  }

  .logo {
    width: 140px;
  }
}