* {
  box-sizing: border-box;
  font-family: "Roboto";
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: white;
}

a:visited {
  color: white !important;
}

body {
    margin: 0;
    padding: 0;
    color: black;
    background-color: black;
}


.color-white {
  color: white;
}

.color-black {
  color: black;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.as-columns {
  flex-direction: column;
}

.as-rows {
  flex-direction: row;
}

.column {
  width: 100%;  
}

.picture-rounded-container {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
}

.picture-rounded-container img {
  display: block;
}



.wrapper {
  max-width: 1024px;
  margin: auto;
}

.button {
  display: inline-block;
  border: 1px solid #ffffff40;
  border-radius: 15px;
  padding: .3rem 1rem;
  background-color: #ffffff20;
  text-decoration: none;
}


/* lang switcher styles */
.lang-switcher {

  position: fixed;
  top: 0px;
  right: 14px;
  z-index: 100;
}

.lang-switcher__list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 20px;
  padding: 10px 15px;
  background-color: #89f0e7;
  border-radius: 5px;
  border: 1px solid #00000040;
  color: black;      
  height: 48px;
  overflow-y: hidden;
}

.lang-switcher__list:focus-within {
  height: auto;
}

.lang-switcher__list:focus {
outline: none;
}

.lang-switcher__item {
  cursor: pointer;
  padding: 5px 0px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  list-style: none;
  color: black;
}

.lang-switcher__item .lang-switcher__link { 
  color: black !important;
  text-transform: uppercase;
  text-decoration: none;
}

.lang-switcher__item .lang-switcher__link.active { 
  text-decoration: underline;
}

.dev-content p {
  text-align: center !important;
}



@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .picture-rounded-container img,iframe {
    width: 100% !important;
  }

  .picture-rounded-container  {
    margin-bottom: 2rem;
    
  } 

  img.mobile-full-width {
    width: 100%;
    height: auto;
  }

}



