#page {
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  height: 100vh;
  width: 100vw;
}

.content_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 8;
  width: 90%;
}

#head_container {
  font-weight: bold;
  text-align: center;
  border-bottom: #ffffffea solid 3px;
}

#header_text {  
  padding: 40px;
  color: #ffffffea;
}

#links {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}

.button_link {
  width: 30px;
  height: 30px;
  margin: 10px;
  margin-bottom: 30px;
  justify-self: center;
  margin-top: auto;
}

.link_logo {
  width: 100%;
  height: 100%;
}

h1 {
  color: #ffffffea;
  font-size: 50px;
  justify-self: center;
  align-self: center;
}

h2,
h3 {
  font-size: 20px;
  color: #ffffffea;
}

/* About me*/

#about_me_text {
  width: 60%;
  text-align: center;
  font-size: 17px;
  /* margin-bottom: 50px; */
}

.language_toggle {
  position: fixed;
  top: 22px;
  right: 24px;
  align-self: flex-end;
  z-index: 10;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 96px;
  height: 40px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: #ffffffea;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.language_toggle:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.language_toggle:focus-visible {
  outline: 2px solid #30db05ea;
  outline-offset: 4px;
}

#language_toggle_indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: #ffffffea;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease;
}

.language_toggle[aria-pressed="true"] #language_toggle_indicator {
  transform: translateX(100%);
}

.language_option {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1;
  transition: color 0.2s;
}

.language_option.is-active {
  color: #000000;
}


/* Projects */
#projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  padding-top: 50px;
  height: 100%;
  width: 100vw;
  padding-bottom: 60px;
}

.projs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.proj {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-style: solid;
  width: 250px;
  height: 300px;
  margin: 20px;
  padding: 20px;
  text-align: center;
  flex-basis: 20%;
}

/* Quando a tela começar a ser diminuída */
@media (max-width: 1000px) {
  .projs {
    flex-direction: column;
  }

  .proj {
    height: 200px;
  }

  .button_link {
    transform: scale(0.8, 0.8);
    margin-top: 3px;
  }

  #about_me_text {
    margin-top: 0px;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .language_toggle {
    top: 14px;
    right: 14px;
    width: 84px;
    height: 36px;
  }

  h1 {
    font-size: 40px;
  }
}

.article_proj {
  color: #ffffffea;
  margin-bottom: 30px;
  font-size: 14px;
  /* font-weight: bold; */
}
