@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 500px;
    max-height: 400px;
}

h1 {
    color: rgb(46, 46, 46);
    text-shadow: 1px 1px rgb(150, 150, 150);
}

button {
    background-color: #84fab0;
    padding: 5px 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 17px;
    color: rgb(100, 100, 100);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover  {
    background-color: #57ff95;
}

#map {
    height: 250px;
    width: 100%;
}