@font-face {
  font-family: "Open Sans";
  src: url("./fonts/OpenSans-Bold.ttf");
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.container {
  width: 100vw;
  width: 100svw;
  height: 100vh;
  height: 100svh;
  background: #fff;

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  background-image: url('./images/Background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  padding-top: 10vh;
  padding-top: 10svh;
}

.title-logo {
  height: 9vh;
  height: 9svh;
}

.photo-container {
  margin-top: 6vh;
  margin-top: 6svh;
  left: 0;
  width: 100%;
  height: 43vh;
  height: 43svh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.photo {
  width: 36vh;
  width: 36svh;
  height: 100%;
  object-fit: cover;

  border-top-left-radius: 6vh;
  border-bottom-right-radius: 6vh;

  background: #fff;
}

.button-container {
  width: 100%;
  height: 7vh;
  height: 7svh;
  margin-top: 3vh;
  margin-top: 3svh;
}

.button-container button {
  width: 100%;
  height: 100%;
  border: 0;
  background: none;

  background-image: url('./images/Button.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-decoration: none;

  font-size: 2.5vh;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

.footer-logo-1 {
  margin-top: 3vh;
  height: 9vh;
}

.footer-logo-2 {
  margin-top: 3vh;
  height: 4vh;
}