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

:root {
  --orange: #ffc107;
  --gray300: #f1f2d7;
  --dark: #474e68;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: 'Arimo', sans-serif;
  margin: 0%;
  box-sizing: border-box;
}

body {
  background-color: #242424;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  background-color: var(--dark);
  align-items: center;
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 5;
  opacity: 0.8;
}

.navbar a {
  color: #fff;
  height: 23.6px;
}

.navbar a:hover {
  border-bottom: 2px solid var(--orange);
}

.title-div {
  margin: 8rem 0 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info {
  display: flex;
  gap: 1rem;
}

.main {
  /* margin-top: 5rem; */
  position: relative;
  display: flex;
  height: 30rem;
  overflow: hidden;
}

.left-right {
  flex: 1;
  width: inherit;
  height: inherit;
  /* transform: translateX(-150px); */
}

#mid {
  flex: 2;
  z-index: 1;
  height: inherit;
  width: inherit;
  transform: translateY(-3px);
}

.left-right {
  filter: blur(5px);
}

.bg-image {
  position: absolute;
  z-index: 1;
  width: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
}



#about {
  color: #fff;
  margin: 4rem 7.5rem;
  text-align: justify;
  background-color: var(--dark);
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#about .about-title {
  text-align: center;
  padding: 1rem;
}




#characters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 100%;
  margin: 4rem 0;
}

#characters .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#characters .container img {
  height: 16rem;
  width: 32rem;
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 1rem;
}

#contact {
  display: flex;
  justify-content: space-between;
  margin: 2rem 5rem 2rem 5rem;
}

#contact .container {}

#Contact-title {
  text-align: center;
  justify-content: center;
  color: #fff;
}

#contact .container a img {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  padding: 1rem;
}

#contact .container a img:hover {
  opacity: 0.7;
}

#contact .container .names {
  text-align: center;
  width: 100%;
  color: #fff;
}

#download {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #fff;
  margin: 4rem 7.5rem;
  text-align: justify;
  background-color: var(--dark);
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#download .download-btn a {
  text-align: center;
  height: 100%;
  background-color: #242424;
  border-radius: 2px;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}