*{
  box-sizing: border-box;
}

body{
  color: #eee;
  background-color: #202020;
}
a{
  color: #eee;
  text-decoration: none;
}
img{
  object-fit: cover;
  height: 100%;
}

.index_content{
  padding-top: 10rem;
  min-height: 100vh;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: top left;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(92, 0, 27, 0.5);
}

.container{
  margin: 0 auto;
  padding: 2rem 1.875rem;
  max-width: 768px;
  width: 100%;
}

.title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}

.title h1{
  font-size: 2rem;
  font-weight: 800;
}

.title p{
  color: #d0d0d0;
}

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

.href_block{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.href_block h2{
  color: #d0d0d0;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.href_block_content{
  margin-top: .75rem;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.href_block a{
  width: 100%;
  height: 3.75rem;
  background-color: #0ea5e9;
  text-align: center;
  border-radius: .625rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.href_block a:hover{
  background-color: #2563eb;
}