@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
    --color-topbar: #3A015C;
    --color-bg: #11001C;
    --color-txt: white;

}


* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
.discord{
	margin-right: 200px;
	height: 20px;
	width: 220px;
}
.fb{
	margin-right: 0px;
	height: 20px;
	width: 220px;
	margin-top: -20px;

}
.steam{
	margin-right: -200px;
	margin-top: -20px;
	height: 20px;
	width: 220px;
}
.imie{
	color: white;
 
}
.imie:hover{
	transition-duration: 2s;
	color: #9900FF;
}
.imie:not(hover){
	transition-duration: 2s;
	color: #FFFFFF
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #333;
  color: #fff;
  height: 100vh;
  line-height: 1.6;
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  /* CSS Smooth Scroll */
  overflow-y: scroll; 
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}


.navbar {
  position: fixed;
  top: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 60px;
  background: var(--color-topbar);

  
}

.navbar ul {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: center;

}

.navbar ul li {
  margin: 0 1rem;
  padding: 1rem;
}

.navbar ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #f4f4f4;
}

.navbar ul li a:hover {
  color: skyblue;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100vh;
 
  /* Scroll Snap */
  scroll-snap-align: center;
}

section h1 {
  font-size: 4rem;
}

/* Section Images */
section#home {
  background: url('img/start.jpg')  no-repeat center center/cover;
}
section#about:hover{
	transition-duration: 2s;
	background-color: #3D0071;
}
section#about:not(hover){
	transition-duration: 2s;
	background-color: #11001C
}

section#about {
  background:  no-repeat center center/cover;;
	background-color: #11001C;
}

section#service {
  background: var(--color-bg) no-repeat center center/cover;
}

section#service:hover{
	transition-duration: 2s;
	background-color: #3D0071;
}
section#service:not(hover){
	transition-duration: 2s;
	background-color: #11001C
}
section#contact {
  background:  no-repeat center center/cover;;
}
section#contact:hover{
	transition-duration: 2s;
	background-color: #3D0071;
}
section#contact:not(hover){
	transition-duration: 2s;
	background-color: #11001C;
}
.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2f3640;
  color: #f5f6fa;
  padding: 0 32px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);

  transition: 400ms;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-container a {
  color: #f5f6fa;
}

.cookie-btn {
  background: #e84118;
  border: 0;
  color: #f5f6fa;
  padding: 12px 48px;
  font-size: 18px;
  margin-bottom: 16px;
  border-radius: 8px;
  cursor: pointer;
}


.motto{
  background-color: var(--color-bg);
  height: 100vh;
  width: 100vw;
  color: white;
  font-size: 80px;
  text-align: center;
}

.motto-txt{
  padding: 10%;
}
.life-motto{
  color: green;
}
.motto-rest:hover{
  color:rgb(212, 0, 255);
  transition: 2s;
}

.motto-rest:not(hover){
  color: white;
  transition: 2s;
}
