html,
body {
  height: 100%;
  margin: 0px;
}

body {
  max-height: 100%;
  background-image: url('1080.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  
  @media (max-width: 950px) {
    background-image: url('bg.png');
  }
}

main {
  height: 100%;
}

.mycontainer {
  display: flex;
  align-items: start;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  @media (max-width: 950px) {
    align-items: center;
  }
}

.logo {
  width: 200px;
  margin-left: 196px;
  margin-top: 20vh;

  @media (max-width: 950px) {
    width: 20vw;
    margin-left: 0px;
    margin-top: 10vh;
  }

  @media (max-width: 600px) {
    margin-top: 6vh;
    width: 30vw;
  }
}

.centered-div {
  position: relative;
  width: 431px;
  height: 168px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  /* transform: scale(0.4); */
  @media (max-width: 950px) {
    left: auto;
  }

  @media (max-width: 600px) {
    width: 280px;
    height: 116px;
  }
}

.top-left, .top-right {
  position: absolute;
  top: 0;
  width: 220px;
  height: 90px;
  @media (max-width: 600px) {
    width: 140px;
    height: 60px;
  }
}

.top-left {
  left: 0;
}

.top-right {
  right: 0;
}

.bottom-center {
  align-self: center;
  width: 286px;
  height: 70px;
  @media (max-width: 600px) {
    width: 200px;
    height: 50px;
  }
}