@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
/*  background: url('../img/bg.jpg'); */
  background-color: #1874a5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.wrap {
  position: relative;
  width: 100%;
  padding: 32px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

h1 {
  font-size: 45px;
  line-height: 50px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

p {
  font-size: 20px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

a.link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #F7FE1C;
  padding: 24px 24px;
  border-radius: 56px;

  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: bold;
}

a.link2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #F7FE1C;
  padding: 24px 24px;
  border-radius: 56px;

  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: bold;
}

svg {
  width: 32px;
  margin-left: 16px;
}

.img {
  width: 70%;
  margin-top: 70px;
  border: solid 8px white;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (min-width: 319px) and (max-width: 768px) {
  * {
    font-size: calc(100vw / 319 * 16);
  }

  .wrap {
    max-width: 100%;
    padding: 0rem;
  }

  .container {
    max-width: 100%;
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
  }

  p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.3rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
  }

  a.link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #F7FE1C;
    padding: 1rem;
    border-radius: 3.5rem;
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: bold;
  }

  a.link2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #F7FE1C;
    padding: 1rem;
    border-radius: 3.5rem;
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: bold;
  }

  svg {
    width: 2rem;
    margin-left: 1rem;
  }

  .img {
    width: 80%;
    margin-top: 2rem;
    border: solid 0.5rem white;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

}