html, body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

#panorama-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#panorama-viewer {
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
}

#panorama-title {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
}

#panorama-home {
    position: absolute;
    top: 15px;
    right: 15px;
}

#panorama-home img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

#panorama-home-light {
    position: absolute;
    top: 15px;
    right: 15px;
}

#panorama-home-light img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

#attribution {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    #panorama-title {
        color: white;
        text-align: center;
    }

    #panorama-viewer {
        border-radius: 0px;
        width: 100%;
        height: 100%;
    }

    #attribution {
        color: white;
        text-align: center;
    }

    #attribution a {
        color: lightgrey;
    }

    #panorama-home {
        display: none;
    }
}

@media (min-width: 768px) {
    #panorama-viewer {
        width: 93%;
        height: 90%;
    }

    #panorama-home-light {
        display: none;
    }

}