@import url('https://fonts.googleapis.com/css2?family=Caudex&display=swap');

:root {
	--primary-color: #3a4052;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Caudex', sans-serif;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

.container {
  font-family: sans-serif;
  color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  gap: 10px;
}

p {
  margin: 0;
}

img {
  -webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);
  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);
  -webkit-mask-size: 800%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}

img:hover {
  transition: mask-position 1s ease,-webkit-mask-position 1s ease;
  -webkit-mask-position: 120%;
  mask-position: 120%;
  opacity: 1;
}

h1 {
	font-weight: 400;
	font-size: 60px;
	text-shadow: 1px 1px 2px #000000;
	line-height: 1.2;
	margin-top: 15px;
	margin-bottom: 15px;

}

h2	{
	font-weight: 300;
	font-size: 25px;
	text-shadow: 1px 1px 2px #000000;
	line-height: 1.2;
	margin-bottom: 30px;
	
}

h3	{
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff40;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.2;
	margin-top: 15px;
	
}

.showcase {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.1) no-repeat center
		center/cover;
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-container:after {
	content: '';
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
}

.content {
	z-index: 2;
}

.btn {
	display: inline-block;
	padding: 10px 30px;
	background: #424549;
	color: #fff;
	border-radius: 5px;
	margin-top: 25px;
	margin-bottom:	25px;
}

.btn:hover {
      background-color: #6a7fc9;
}

#discord-button { 
	display: inline-flex;
  .icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    
    svg {
      fill: white;
    }
  }
  
  a {
    color: white;
	font-family: Arial, Helvetica, sans-serif; 
    font-weight: 400;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #42454997;
    text-decoration: none;
	margin:	5px 5px 5px 5px;
    
    &:hover {
      background-color: #7289da97;
    }
  }
}

#vip-button { 
	display: inline-flex;
  .icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    
    svg {
      fill: white;
    }
  }
  
  a {
    color: white;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif; 
    font-weight: 400;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #42454997;
    text-decoration: none;
	margin:	5px 5px 5px 5px;
    
    &:hover {
      background-color: #ac61b997;
    }
  }
}

#donate-button { 
	display: inline-flex;
  .icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    
    svg {
      fill: white;
    }
  }
  
  a {
    color: white;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif; 
    font-weight: 400;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #42454997;
    text-decoration: none;
	margin:	5px 5px 5px 5px;
    
    &:hover {
      background-color: #05878997;
    }
  }
}