/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

body {
  background-color: #24343A;
  color: #FBF4E9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100px 100px;
}

.container {
  flex: 1; /* push footer down */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 40px auto;
  gap: 30px;
}

.logo img {
  width: 300px;
  height: auto;
  margin: 20px auto 80px;
}

.title h1 {
  font-size: clamp(28px, 6vw, 80px); /* scales smoothly */
  text-align: center;
  font-weight: 500;
 
}

.description {
  font-size: clamp(16px, 2.5vw, 28px);
  text-align: center;
  font-weight: 300;
  margin-top: 30px;
}

.plug img {
  max-width: 100%; /* responsive by default */
  height: auto;
  margin: 20px auto;
}

.footer .socials {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer .socials a {
  color: #FBF4E9;
  margin: 5px 10px;
  font-size: 20px;
  border: 1px solid #FBF4E9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.footer .socials a:hover {
  background-color: #FBF4E9;
  color: #24343A;
}

footer {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #888;
  margin-top: auto;
}

/* Large desktops */
@media screen and (min-width: 1536px) {
  .plug img {
    max-width: 1400px;
  }
}
