@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html {
  scrollbar-color: #800085 #000;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background-color: #800085;
  color: #000;
}

body {
  background-color: #000;
  color: #800085;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  margin: 20px;
  padding: 0;
}

header {
  margin-top: 100px;
  text-align: center;
}

header img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
}

main {
  margin: 50px auto;
  max-width: 100%;
  text-align: center;
  width: 600px;
}

main > div:not(:first-child) {
  margin-top: 100px;
}

.mylz {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 400px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons img {
  width: 40px;
  height: 40px;
}

@media (max-width: 600px) {
  .social-icons img {
    width: 75px;
    height: 75px;
  }
}

.contact-form {
  text-align: left;
}

.contact-form h3 {
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #000;
  border: 2px solid #800085;
  border-radius: 4px;
  color: #800085;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a000a5;
  box-shadow: 0 0 0 2px rgba(128, 0, 133, 0.2);
}

button[type="submit"] {
  background-color: #800085;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #a000a5;
}

footer {
  font-size: 0.8rem;
  margin: 100px auto 50px auto;
  text-align: center;
}

.fivefifteen {
  font-size: 0.8rem;
  text-align: center;
}

.fivefifteen a {
  color: #800085;
  display: inline-block;
  text-decoration: none;
}

.fivefifteen img {
  display: block;
  height: auto;
  margin: 1rem auto 5px auto;
  width: 150px;
}

.fivefifteen span {
  display: block;
}

iframe {
  max-width: 100%;
}

.video-link {
  display: block;
  margin-top: 15px;
  text-decoration: underline;
  color: #800085;
  font-size: 1.5rem;
  font-weight: 700;
}