@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto';
  src: local('Roboto'), local('Roboto-Regular'), url(./assets/fonts/Roboto-Regular.ttf) format('truetype');
}

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto Light';
  src: local('Roboto Light'), local('RobotoLight'), url(./assets/fonts/Roboto-Light.ttf) format('truetype');
}

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto Bold';
  src: local('Roboto Medium'), local('Roboto-Medium'), url(./assets/fonts/Roboto-Bold.ttf) format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
  height: 100vh;
  width: 100vw;
  margin: 0px;
  font-family: 'Roboto';
  padding: 25px;
  overflow: hidden;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.header {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}

.logo {
  max-width: 120px;
}
.logo img {
  width: 100%;
}

.main {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome{
  color: white;
  text-align: center;
  margin-bottom: 15%;
  text-transform: uppercase;
}

.welcome .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 8.65px;
  margin-bottom: 10px;
}
.welcome .subtitle {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.65px;
}

.btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 20%;
  width: 80%;
  border-radius: 25px;
  text-transform: uppercase;
}

#elabel-btn:hover, #elabel-btn:active{
  background-color: transparent;
  border: 2px solid #FFFFFF;
}
#elabel-btn:hover .top-text,
#elabel-btn:active .top-text,
#elabel-btn:hover .bottom-text,
#elabel-btn:active .bottom-text {
  color: white;
}

.btn:hover a, .btn:active a {
  color: #f5f5f5
}

#elabel-btn {
  margin-bottom: 10%;
  background: rgba(255, 255, 255, 0.75);
  padding: 52px 10px;
}

.top-text, .bottom-text {
  font-size: 20px;
  color: white;
  letter-spacing: 2px;
}
#elabel-btn .top-text,
#elabel-btn .bottom-text {
  color: black;
  letter-spacing: 2px;
}
#elabel-btn .top-text {
  font-weight: bold;
  margin-bottom: 19px;
}
#elabel-btn .bottom-text {
  font-weight: 300;
  letter-spacing: normal;
}

#nft-btn {
  border: 2px solid #FFFFFF;
  color: white;
  height: auto;
  font-weight: 700;
}

#nft-btn a {
  width: 100%;
  padding: 20px 10px;
}

.btn a{
  text-decoration: none;
  color: black
}

.select-ctn {
  position: relative;
}

select {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  height: 50px;
}

.select-overlay {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

#selected-lang{
  padding: 0 5px;
  text-transform: uppercase;
}

.icon{
  width: 20px;
}