/* DESKTOP-VERSION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  background-color: #00000050;
  padding: 50px 100px;
  position: relative;
  height: 100vh;
}

video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
}

.flag {
  height: 20px;
  width: auto;
}

.blurry {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #222d3680;
  overflow: hidden;
  filter: blur(15px);
  z-index: -1;
}

.logo-image {
  width: 300px;
}

.container-branches {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  padding-top: 5px;
  gap: 50px;
}

.select-branch {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  font-family: "Montserrat", sans-serif;
}

.select-branch h1 {
  font-size: 20px;
  text-align: center;
}

.container-buttons {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}

.container-buttons a {
  text-decoration: none;
  height: 50px;
  border-radius: 16px;
  background-color: #7fbae140;
  border: 3px solid white;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Montserrat";
  text-align: center;
  gap: 10px;
  display: flex;
  width: 250px;
}

.container-buttons a:hover {
  background-color: #7fbae1;
}

footer {
  position: absolute;
  bottom: 20px;
}

footer span {
  color: #ccc;
  font-size: 12px;
}

footer a {
  color: white;
}

footer a:visited {
  color: white;
}

/* MOBILE VERSION */

@media only screen and (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .container-branches {
    width: 100%;
    height: auto;
  }

  .select-branch {
    display: flex;
    gap: 20px;
  }

  .container-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
  }
}

@media only screen and (max-height: 830px) {
  .logo-image {
    width: 200px;
  }

  .select-branch h1 {
    font-size: 16px;
    text-align: center;
  }

  .container-buttons a {
    font-size: 14px;
    font-weight: 500;
  }

  footer {
    display: none;
  }
}

@media only screen and (max-height: 500px) {
  .logo-image {
    width: 150px;
  }

  .select-branch h1 {
    font-size: 16px;
    text-align: center;
  }

  .container-buttons a {
    font-size: 14px;
    font-weight: 500;
  }

  footer {
    display: none;
  }
}