@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');



:root {
  --primary-color: #3a4052;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Abel', sans-serif;
  line-height: 1.5;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  
  background: url('image/fadedSagaBackground.jpg') no-repeat center;
  background-color: #ed635b;
  background-size: cover;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

h1 {
  font-weight: 300;
  font-size: 120px;
  line-height: 1;
  margin-bottom: 15px;
}

h3 {
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 15px;
}

.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.fadedsaga_logo {
  
  max-width: 80%;
  max-height: 80%;
  opacity: 0.7;
}


.content {
  z-index: 2;
  margin: 20px;
  width: auto;
  padding: 20px;
}









.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url('image/fadedSagaBackground.jpg') no-repeat center;
  background-color: #cccccc;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  border: solid #fff 1px;
  margin-top: 25px;
  opacity: 0.7;
}

.btn:hover {
  transform: scale(0.98);
}

#about {
  padding: 40px;
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

#about h2 {
  margin: 30px 0;
  color: var(--primary-color);
}

.social a {
  margin: 0 5px;
}