/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
* {
    box-sizing: border-box;
  }
  
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
}
  
main {
    display: flex;
    flex-direction: column;
    padding: 0 15%;
    min-height: 85vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-image: url('images/Pasture.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

footer {
    background: white;
    height: auto;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center;
}

.map-container {
    height: 68vh;
    width: 100%;
    margin-top: 100px;
}

@media (max-width: 700px) {
    main {
        padding: 0 5%;
    }
}
