* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto';
  src: url('./polices/Roboto-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('./images/Landingpage.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
}


.logo img {
 max-width: 100px;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 14vh;
  padding: 5vh 5vw;
  text-align: center;
}

.titleContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 35px;
  gap: 4vh;
}

.titleContainer img {
  width: 90%;
  height: auto;
}

.platformContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 27px;
  gap: 3vh;
}

.platformContainer img {
  width: 250px;
  height: auto;
}

.groupContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.linkContainer {
  font-size: 19px;
  margin-top: 2vh;
  color: white;
}

.linkContainer a:visited {
  color: white;
}

.greenVector {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: none;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.greenVector picture {
  width: 100%;
  height: 100vh;
}

.greenVector img {
  position: absolute;
  bottom: 0;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 600px) {
  .greenVector picture {
    display: flex;
    align-items: flex-end;
  }

  .greenVector img {
    min-height: 200px;
  }
}
