@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../img/boracay.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
  }

.landing {
    width: 600px;
    height: auto;
    margin: auto;
    padding: 18px;
    background: #fff;
    border-radius: 25px;
}

h1 {
  text-align: center;
  border-bottom: 1px solid blue;
}

.websted {
  text-align: center;
}

@media (max-width: 600px) {

  .landing {
    max-width: 80vw;
  }
  
    img {
      width: 60vw;
    }
  }
  