/* ==========================================================================
 Base styles: opinionated defaults
 ========================================================================== */

html {
    color: #303030;
    font-size: 1em;
    line-height: 1.4;
}


#bnd {
    width: 100%;
    /* height: 100%; */
    min-height: 100vh;
    background-color: color(srgb 0.7511 0.6921 0.6932);
    top: 0px;
    left: 0px;
    position: absolute;
}


.container {
    display: grid;
    place-content: center;
    min-height: 100vh;
}

#textlooks {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;

    z-index: 10;
    color: #FFFFFF;
    font-size: 30px;
}


body {
    margin: 0;
overflow:hidden;
}

#globe-container {
    width: 100vw;
    height: 100vh;
    background: transparent;
    position: absolute;
    top: 0px;


}

/* BIRDS AND CONTROL */

.bird-path {
    transition: stroke-dashoffset 0.3s linear;
    stroke-dasharray: 0.1, 4;
    stroke-linecap: round;
    stroke-width: 2px;
}

.bird-marker {
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 1s ease-out;
}

.moviecontrol {
position: absolute;
    top: 0px;
    left: 50px;
    height: 0px;
    width: 800px;
    background: #ffffff9e;
    margin-left: -400px;
    left: 50%;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.buttonClass {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
}

.progress-container {
    flex-grow: 1;
    height: 10px;
    background: #333;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: #4CAF50;
    border-radius: 5px;
    width: 0%;
    transition: width 0.1s linear;
}

.slider {
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-display {
    font-family: monospace;
    margin-bottom: 5px;
    text-align: center;
}


/*      VideoElements   */


div#media-container {
    z-index: 999;
    width: 370px;
    height: 370px;
    border-radius: 310px;
    overflow: hidden;
    border-color: white;
    border-width: 10px;
    border-style: solid;
    background-color: lightgray;
     box-shadow: 0 5px 5px rgba(10,10,10,0.8);
}

div#video-bubble {
position: absolute;
top: 50%;
left: 30%;
margin-left: -215px;
margin-top: -315px;
transform: scale(0.0) rotateY(90deg) translateX(-650px);
/* transform: rotateY(90deg); */
transition: 2s;
}
#arrow {
    position: relative;
    top: -51px;
    left: 271px;
    width: 50px;
    height: 50px;
}

svg#svg_arrow {
    fill: #ffffff;
    
}


#media-container video {
margin-left: -200px;
width: 660px!important;
}

#media-container video {
    width: 720px;
    margin-left: -150px;
}