h1 {
    font-family: 'Slackey';
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    background-image: linear-gradient(135deg, rgb(72, 17, 223), rgb(162, 0, 255));
    color: white;
}

#divy1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 3px solid white;
    background-image: linear-gradient(180deg, rgb(255, 52, 1), yellow);
}

#parent {
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: flex-start;
}

#gmap {
    display: none;
    width: 50%;
}

#frmer {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

#texti {
    width: 50%;
}

#map {
    height: 0;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    border-radius: 12px;
    overflow: hidden;
}

.leaflet-container {
    width: 100%;
    height: 100%;
}

#startBtn {
    margin-top: 12px;
    padding: 10px 24px;
    font-family: 'Slackey';
    font-size: 1rem;
    background: white;
    color: rgb(72, 17, 223);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#startBtn:hover {
    background: rgb(255, 52, 1);
    color: white;
}