body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

body {
  background: url(./images/bg.png) no-repeat center center fixed;
  background-size: cover;
}

#vanta {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

video {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  position: relative;
}

main.animated {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

header {
  margin-top: 3em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header > img.photo {
  width: 6em;
  height: 6em;
  border-radius: 100%;
  /*border: 1px solid #fff;*/
  box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}

header > h1 > img.verified {
  width: 1.2em;
  height: 1.2em;
  vertical-align: text-bottom;
}

header > h1 {
  display: inline-block;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 1em;
  background-color: #000a;
  color: #fff;
  padding: 0.3em 0.6em;
  border: 1px solid #fffa;
  backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
}

ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0 auto;
  padding: 0em 2em;
  max-width: 680px;
}

ul > li {
  background-color: #fffa;
  backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  border-radius: 10em;
  margin: 1.4em 0;
  box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
}

ul > li:hover {
  box-shadow: rgba(8, 49, 112, 0.24) 0px 4px 12px 0px;
  transform: scale(1.01);
}

ul > li > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 1em;
}

ul > li > a > span.arrow {
  position: absolute;
  right: 15px;
  top: 13px;
  margin-bottom: -4px;
  opacity: 0;
  transform: scale(0.1);
  transition: transform 0.3s, opacity 0.3s;
}
ul > li:hover > a > span.arrow {
  opacity: 1;
  transform: scale(1);
}

div > a > button > span.arrow {
  position: absolute;
  right: 15px;
  top: 13px;
  margin-bottom: -4px;
  opacity: 0;
  transform: scale(0.1);
  transition: transform 0.3s, opacity 0.3s;
}
div > a > button:hover > span.arrow {
  opacity: 1;
  transform: scale(1);
}



div.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 4em 0em 2em 0em;
  max-width: 680px;
  text-align: center;
}

div > a > button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 0.8em;
  background-color: #fffa;
  backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  border: none;
  border-radius: 10em;
  margin: 1em 0.5em;
  box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, padding 0.15s;
  opacity: 1;
  width: 200px;
  font-size: 16px;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  div > button {
    gap: 0.5em;
    padding: 0.5em;
    margin: 1.4em 1em;
  }
  div.contact{
      padding: 2em 0em 2em 0em;
  }
}


div > a > button:hover {
  box-shadow: rgba(8, 49, 112, 0.24) 0px 4px 12px 0px;
  transform: scale(1.02);
  transition: padding 0.15s;
  padding-right: 3rem;
}


h2 {
  text-align: center;
  font-weight: 700;
  color: rgb(56 80 116);
  font-size: 16px;
}

h3 {
  text-align: center;
  font-weight: 700;
  color: rgb(56 80 116);
  font-size: 18px;
}

a {
  color: rgb(56 80 116);
  text-decoration: none;
  font-size: 16px;
}