.page {
  font-family: 'Inter', 'Arial', sans-serif;
  font-style: normal;
  font-weight: normal;
  color: white;
  background-color: #10191E;
}

.header {
  height: 95px;
  display: flex;
  max-width: 1330px;  
}

.header__link {
  font-size: 28px;
  text-decoration: none;
  color: white;
}

.header__link[lang="en"]::before {
  content: "Hello, my name is ";
}

.header__link[lang="fr"]::before {
  content: "Bonjour, je m'appelle ";
}

.header__link[lang="es"]::before {
  content: "¡Hola, mi nombre es ";
}

.header__link::after {
  content: '!';
}

.project__overlay {
  padding-top: 15px;
  height: 100%;
  width: 100%;
  /* we've made the link take up the whole block */
  display: flex;
  justify-content: center;
  align-items: top;
  color: antiquewhite;
  /* centered the text using flex */
  text-decoration: none;
  /* removed underlining */
  opacity: 1;
}

.project__overlay_color {
  color: rgb(11, 9, 122);
}

.project__overlay:hover {
  color: white;
  text-transform: uppercase;
  font-size: 30px;
  text-align: center;
  box-sizing: border-box;
  /* we've given the element an internal border to prevent the container from expanding */
  padding: 20px;
  /* the inner margin to prevent the text from touching the edges of the container */
  background-color: rgba(0, 0, 0, .5);

}

.content {
  max-width: 80%; 
}

.content__title {
  font-size: 34px;
  margin: 0 0 40px;
  text-align: center;
}

.centered-block {
  margin: auto;
}

.project {
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}

.project_width_l {
  width: 636px;
}

.project_width_m {
  width: 306px;
}

.project_height_xl {
  height: 557px;
}

.project_height_l {
  height: 430px;
}

.project_height_m {
  height: 290px;
}

.project_height_s {
  height: 240px;
}

.project_name_music-album {
  background-image: url(./images/drift.jpg);
}

.project_name_design-principles {
  background-image: url(https://code.s3.yandex.net/web-code/design.png);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-row_reversed {
  flex-direction: row-reverse;
}

.flex-row_space_bottom {
  margin-bottom: 60px;
}

.flex-column {
  display: flex;
  justify-content: space-between;
}

.flex-column_reversed {
  flex-direction: column-reverse;
}

.project__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project_name_slider {
  background-image: url(./images/Screenshot_4.png);
}

.project_name_reactive {
  background-image: url(./images/react_logo.gif);
}

.menu {
  display: flex;
  justify-content: center;
  min-height: 75px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1330px;
  min-width: 1280px;
}

.page__menu {
  margin: 40px auto;
}

.menu__link {
  font-size: 18px;
  text-decoration: none;
  color: white;
  background-color: #10191E;
  margin-right: 20px;
}

.menu__link_active {
  text-decoration: underline;
}

.menu__link:last-of-type {
  margin-right: 0;
}

.project_name_how-to-study {
  background-image: url(./images/learn_to_learn.png);
  order: 3;
}

.project_name_across-usa {
  background-image: url(./images/accross_usa.png);
  order: 2;
}

.project_name_around {
  background-image: url(./images/logo_usa.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
  order: 1;
}

.footer {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 1330px;
  min-width: 1280px;
  padding-bottom: 30px;
}

.footer__logo {
  width: 150px;
  height: 150px;
  background-image: url(./images/footer_logo.gif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  align-self: center;
}

.footer__contact {
  flex-direction: column;
  margin-left: 60px;
}

.footer__contact-content {
  color: white;
  line-height: 1.15;
  text-decoration: none;
}