@media only screen and (max-width: 1000px) {
    div.vp-col{
        padding: 5pt;
        margin: 5pt;
        margin-left: auto;
        margin-right: auto;
    }
    #img-bee-dead{
        width:100%;
    }
}
@media only screen and (min-width: 1000px) {
    .vp-col{
        flex:1 0 0
    }
    div.vp-col{
        padding: 10pt;
        margin: 10pt;
    }
}

body[scheme=yellow]{
    --gradient: linear-gradient(120deg, #f9cd2f 0%, #df8f11 100%);
}

.bg{
    background-image: var(--gradient);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
}

#images{
    height: 200pt;
    width: 100%;
    align-content: center;
    justify-content: center;
}
#images img{
    height: 200pt;
}

#images button span{
    background-color: grey;
}

div.vp-col{
    background: #eee;
    border-radius: 5pt;
    left: auto;
    right:auto;
    width:100%;
}

#queen_crown{
    position: absolute;
    height: 40pt;
    padding-left: 130px;
}

.info-box{
    height: 350pt;
}

.info-box a{
    color: black;
}

#sources{
    border-radius: 5pt;
    padding:10px;
    background-color: #eee;
}

#tooltips{
    display: grid;
    position: relative;
    overflow: hidden;
    height: 100%;
}

h2{
    padding: 10px;
}

#img-bee-dead{
    width:100%;
}
.m-tooltip {
  position: absolute;
  display: inline-block;
}

/* m-tooltip text */
.m-tooltip .m-tooltipcontent {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the m-tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in m-tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* m-tooltip arrow */
.m-tooltip .m-tooltipcontent::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the m-tooltip text when you mouse over the m-tooltip container */
.m-tooltip:hover .m-tooltipcontent {
  visibility: visible;
  opacity: 1;
}

footer div{
    background-color: #eee;
    border-radius: 5px;
    margin:10px;
    padding:5px;
}
footer button{
    margin-top:10px;
}
#sources .title{
    font-size: 1.5em;
    padding:10px;
}
#sources .sources-list{
    list-style-type: none;
    & a::after{
        content: url("img/link-45deg.svg");
        color:blue;
    }
    & a.noimg::after{
        content: "";
    }

}