@import url("https://fonts.googleapis.com/css2?family=Unica+One&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Unica One", sans-serif;
}

html {
  scroll-behavior: smooth;
}

::selection {
  color: yellow;
  background: rgb(35, 35, 35);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgb(11, 0, 71);
}

::-webkit-scrollbar-thumb {
  background: rgb(101, 2, 139);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(212, 0, 255);
}

header {
  height: 60px;
  background-color: rgb(29, 29, 29);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid yellow;
  font-weight: bold;
  color: white;
}

.menu-icon {
  display: none;
  float: left;
  cursor: pointer;
  z-index: 10;
}
.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #f8ffbeff;
  margin: 6px 0;
  transition: 0.4s;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
  background-color: yellow;
}
.change .bar2 {
  opacity: 0;
  background-color: yellow;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
  background-color: yellow;
}

.change .dropdown-content {
  display: block;
  position: absolute;
}
.dropdown-content {
  display: none;
  float: left;
  margin-left: -10px;
  margin-top: 12px;
  background-color: rgb(29, 29, 29);
  font-size: large;
}

.dropdown-content a {
  display: block;
  list-style: none;
  padding: 20px;
  border-bottom: 1px solid yellow;
  color: #f8ffbeff;
  text-decoration: none;
}

.dropdown-social {
  display: flex;
}

.dropdown-social a {
  background-color: yellow;
  padding: 10px;
  margin-right: 3px;
}

.dropdown-social a:last-child {
  margin-right: 0;
}

.dropdown-social img {
  width: 30px;
}

#large-logo {
  display: flex;
  align-items: center;
}

#short-logo {
  display: none;
}

#large-logo span,
#short-logo span {
  font-size: x-large;
}

#large-logo img,
#short-logo img {
  height: 52px;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  float: right;
  margin-right: 20px;
  height: 100%;
}

nav a {
  display: inline-block;
  padding: 20px 15px;
  text-decoration: none;
  font-size: large;
  color: #f8ffbeff;
}

nav a:hover,
nav a:active {
  background-color: yellow;
  color: black;
}

nav img {
  height: 30px;
}

nav a:has(img) {
  padding: 11px 5px;
  background-color: #f8ffbeff;
  margin-left: 3px;
}

nav .active,
.dropdown-content .active {
  color: yellow;
}

.mainContainer {
  background-image: url(/images/patterns/circles-pattern.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding-bottom: 50px;
}

.title {
  padding-top: 20px;
  margin-bottom: 40px;
  font-size: 70pt;
  font-weight: bold;
}

.title span {
  border-bottom: 3px solid #9100bcff;
}

.subtitle {
  font-size: 60pt;
}

.elementsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.sheet {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
  border: 3px solid #9100bcff;
  border-radius: 0 0 10px 10px;
  text-align: center;
  padding: 2px;
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 1s;
}

.sheet:hover {
  border: 3px solid yellow;
  transform: scale(1.1, 1.1);
}

.gameSheet {
  height: 400px;
  width: 400px;
  background-image: url(/images/patterns/isometric-pattern.png);
}

.gameSheet div {
  color: #f8ffbeff;
  font-size: 45pt;
}

.socialSheet {
  height: 250px;
  width: 250px;
  background-image: url(/images/patterns/wavy-pattern.png);
}

.socialSheet img {
  width: 80%;
}

footer {
  height: 50px;
  background-image: linear-gradient(#0a004eff, #003c6eff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media only screen and (max-width: 625px) {
  header {
    padding: 10px;
  }

  .menu-icon {
    display: block;
  }

  #large-logo {
    display: none;
  }

  #short-logo {
    display: flex;
    align-items: center;
  }

  nav {
    display: none;
  }

  .title {
    margin-right: 20px;
    margin-left: 20px;
    border-bottom: 3px solid #9100bcff;
    font-size: 4em;
  }

  .title span {
    border-bottom: 0;
  }

  .subtitle {
    font-size: 2em;
  }

  #containerLogo {
    width: 40%;
  }

  .gameSheet{
    height: 300px;
    width: 300px;
  }

  .socialSheet {
    height: 150px;
    width: 150px;
  }
}

@media only screen and (max-width: 375px) {
  .title {
    font-size: 3.4em;
  }

  #containerLogo {
    width: 50%;
  }
  
  .socialSheet {
    height: 110px;
    width: 110px;
  }
}
