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

body {
    background-color: #efb5d3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
}

.map-container {
    width: 200vw;
    position: relative;  
    height: auto;
    border: 8px blue;
}

.map {
    width: 139%;
    position: relative; 
    background-image: url('taust.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16/10;  
}

.pin {
    position: absolute;
    width: 7%; 
    height: auto;
    transform-origin: center;
    transition: transform 0.3s ease;
}


.pin a img {
    width: 100%;
    height: auto;
}

.pin:hover {
    transform: scale(1.2);
}

.elbkink-pin {
    top: 44%;
    left: 52%;
    list-style: none;
}

.garage-pin {
    top: 64%;
    left: 42%;
    list-style: none;
}

.kollane-pin {
    top: 56%;
    left: 38%;
    list-style: none;
}

.garage2-pin {
    top: 38%;
    left: 50%;
    list-style: none;
}

.waterfall-pin {
    top: 50%;  
    left: 50%; 
    list-style: none;
}

.sign-pin {
    transition: transform 0.3s ease;
    width: 15%;
    top: 10%;
    left: 30%;
    list-style: none;
}

@media screen and (min-width: 720px) {
    html {
        font-size: 16px;
    }

    .map-container {
        width: 70vw;
    }
}

@media screen and (min-width: 1280px) {
    html {
        font-size: 20px;
    }

    .map-container {
        width: 60vw;
    }
}