:root
{
  --duration-value: 0.3s;
  --box-shadow-value: 0px 0px 10px rgba(0,0,0,0.4);
}

*
{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  /* cursor: url(gun-sight.cur) 64 64, auto; */
}

body
{
  margin: 0;
  padding: 0;
  background: white;
}

header
{
  width: calc(100% - 600px);
  width: 100%;
  height: var(--vh);
  margin: 0 auto;
  
  background: url(img/IMG_6565.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}

header > .menu-1
{
  height: 46px;
  background: #282828;
  color: #D0D0D0;
}
header > .menu-1 a
{
  color: #D0D0D0;
  text-decoration: none;
  font-size: 14px;
  transition-duration: 0.1s;
}
header > .menu-1 a:hover
{
  color: #F0F0F0;
  text-decoration: underline;
  cursor: pointer;
}
header > .menu-1 a:not(:first-child)
{
  margin-left: 40px;
}

header > .menu-2
{
  height: 128px;
  background: rgba(40, 40, 40, 0.5);
}
header > .menu-2 .team-name
{
  font-weight: bold;
  color: white;
  font-size: 48px;
  text-decoration: none;
}
@media screen and (max-width: 480px)
{
  header > .menu-1
  {
    text-align: center;
  }
  header > .menu-2
  {
    height: 30vw;
  }
  header > .menu-2 .team-name
  {
    font-size: 8vw;
  }
}

header .menu-wrapper
{
  width: 95%;
  height: inherit;
  margin: 0 auto;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 480px)
{
  header .menu-wrapper
  {
    flex-direction: column;
    justify-content: center;
  }
}

header nav
{
  margin: 0 0 0 auto;
}
header nav > a
{
  margin: 0 20px;
  color: #CCC;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition-duration: 0.1s;
}
header nav > a:hover
{
  color: white;
}
@media screen and (max-width: 480px)
{
  header nav
  {
    margin: 0 auto;
    display: none;
  }
}

div.sep
{
  font-size: 32px;
  text-align: center;
}

div.board
{
  margin: 72px auto;
  width: 100%;
}
div.board:not(:first-of-type)
{
  margin-top: 128px;
}
div.board > .icon
{
  font-size: 32px;
  text-align: center;
  margin: 0 auto;
  color: #824792;
}

div.board > h2
{
  width: fit-content;
  text-align: center;
  font-size: 32px;
  margin: 10px auto 48px;

  background:linear-gradient(to right, #ff0024 0%,#058eff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.board > .logo-large
{
  margin: 0 auto;
  background: url(img/logo-gradient.png) no-repeat;

  width: calc(1347px * 0.7);
  height: calc(718px * 0.7);
  background-size: cover;
}
@media screen and (max-width: 480px)
{
  div.board > .logo-large
  {
    width: 90% !important;
    height: 50vw;
    background-size: 90%;
  }
}

div.board > .desc
{
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
  color: gray;
  line-height: 18px;
}
div.board > .desc > ul > li
{
  margin-bottom: 64px;
}
div.board > .desc > ul > p
{
  text-align: right;
  color: darkgray;
  font-size: 16px;
  font-weight: normal;
}

div.board > .profile-wrapper
{
  width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
div.board > .profile-wrapper > .profile-card
{
  width: 100%;
  height: fit-content;
  margin: 0 60px;
}
div.board > .profile-wrapper > .profile-card > .avator
{
  margin: 0 auto;
  aspect-ratio: 1;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 50%;
}
div.board > .profile-wrapper > .profile-card > .name-wrapper
{
  width: fit-content;
  margin: 0 auto 40px auto;
  line-height: 10px;
}
div.board > .profile-wrapper > .profile-card .name
{
  color: black;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
div.board > .profile-wrapper > .profile-card .leader
{
  text-align: right;
  font-weight: bold;
  color: red;
  font-size: 16px;
}
div.board > .profile-wrapper > .profile-card li
{
  color: gray;
  font-size: 14px;
}
@media screen and (max-width: 480px)
{
  div.board > .desc
  {
    width: fit-content;
  }
  div.board > .profile-wrapper
  {
    flex-direction: column;
    width: 100%;
  }
  div.board > .profile-wrapper > .profile-card
  {
    margin: 0 auto;
    width: 60%;
  }
  div.board > .profile-wrapper > .profile-card > .avator
  {
    width: 80%;
  }
  div.board > .profile-wrapper > .profile-card:not(:first-child)
  {
    margin-top: 64px;
  }
  div.board > .profile-wrapper > .profile-card:not(:last-child)
  {
    border-bottom: solid 4px darkgray;
    border-image: linear-gradient(to right, transparent 0%, #EEE 50%, transparent 100%) 1;
    padding-bottom: 64px;
  }
}

div.snapshots
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 20px);
  margin: 0 auto;
}
div.snapshots > img
{
  width: calc(100% - 20px);
  margin: 0 10px 20px 10px;
}
@media screen and (max-width: 480px)
{
  div.board
  {
    width: 90%;
  }
  div.board > h2
  {
    font-size: 6.4vw;
  }
  div.board > .desc
  {
    font-size: 3.4vw;
    line-height: 3.4vw;
  }
  div.snapshots
  {
    width: 100%;
    grid-template-columns: 1fr;
  }
  div.snapshots > img
  {
    width: calc(100% - 20px);
    margin: 0 10px 10px 10px;
  }
}

div.btn-wrapper
{
  width: fit-content;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
  margin: 0 auto 100px;
}
div.btn-wrapper > a
{
  height: 46px;
}

button.gradient-btn
{
  text-align: center;
  width: 180px;
  height: 46px;
  
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;

  border: none;
  outline: none;

  transition-duration: 0.1s;
}
button.gradient-btn:hover
{
  cursor: pointer;
  margin-top: 4px;
}
button.gradient-btn:hover
{
  border-bottom-width: 3px !important;
}

button.google-form
{
  background:linear-gradient(135deg, #F36265 0%,#961276 100%) !important;
  border-bottom: 5px solid #961276 !important;
}
button.back-to-gametop
{
  background:linear-gradient(135deg, #f2d50f 0%,#e67326 100%) !important;
  border-bottom: solid 7px #e67326 !important;
}

footer
{
  width: 100%;
  height: 64px;
  background: #282828;
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 16px;
}
::-webkit-scrollbar
{
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track
{
  background: #F0F0F0;
}
::-webkit-scrollbar-thumb
{
  background: #058eff;
}