﻿html {
    font-size: 62.5%
}

body {
    font-family:'Segoe UI Variable Display', Segoe UI,Arial, Serif;
    font-size: 1.6rem;
    margin: 0 auto;
    width: 100%;
    color: darkslategrey;
    cursor:default;
}


/*XXLarge screens - min-width 1921px 

@media only screen and (min-width: 120.063em) {
    body {
        font-size: 1.6rem;
    }

}
    @media only screen and (orientation: landscape) {
  body {
    background-color: lightblue;
  }
}


* {
    margin: 0;
    box-sizing: border-box
}
*/
a{
    cursor:default
}
p {
    margin: 1rem;
    padding-left: 1rem
}

ul {
    margin-left: 5rem;
}

.navbar {
    height: 40rem;
    background-image: url("/Images/fm-alive4.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #cccccc;
    padding-bottom: 2rem;
}

/* For device height 400px and larger: 
@media only screen and (min-device-height: 1800px) {
    .navbar {
        height: 50rem;
        background-image: url("/Images/fm-alive4.webp")
    }
}
     */

@media (max-width: 1699px) {

    img#store {
        display: none;
    }

    #titlemenu {
        margin-top: 5rem;
        
    }
}

#menu {
    list-style-type: none;
    margin: 0 0 0 1.2rem;
    padding: 0;
    width: 125%;
}

    #menu li {
        float: left;
        font-size: 2rem;
        margin-top: 0
    }

        #menu li a {
            color: white;
            display: block;
            padding: 1rem;
            cursor:default
        }

    #menu a:hover {
        color: white;
        background-color: lightgray;
        text-decoration:none
    }

    #menu a:active {
        background-color: darkgrey;
        text-decoration:none
    }

.hdr1, .hdr2, .hdr3, .hdr4, .hdr5 {
    color: slategrey;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 1rem;
}

p.hdr1 {
    font-size: 4.8rem;
    color:salmon
}

p.hdr2 {
    font-size: 3.2rem;
}

p.hdr3 {
    font-size: 2.7rem;
    margin-top:5rem
}

p.hdr4 {
    font-size: 2.3rem;
}

p.hdr5 {
    font-size: 1.8rem
}

li {
    margin: .75em 0
}

a {
    text-decoration: none;
    color: rgb(46, 57, 179)
}

    a:target {
        padding-top: 0
    }

    a:link {
        color: rgb(46, 57, 179);
        text-decoration: none;
    }

    a:hover, a:active {
        color: rgb(46, 57, 179);
        text-decoration: underline;
        font-weight: 600;
    }

.floattitle {
    Margin-top: 6rem;
    margin-bottom: 4rem;
    text-align: center;
}


.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

    .flex-container > div {
        padding-left: 10px;
    }

.flex-containercenter {
    display: flex;
    justify-content: center;
}


.flex-containerstripe {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    height:100%;
}


.flex-containerleft {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10rem
}


    .flex-containerleft ul {
        margin-left: 0;
    }


.flex-containerlm {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 5rem;
}


.flex-containerlm > div {
    margin-right: 5rem
}

.flex-container li {
    line-height: 150%;
}

.flexcontainervert {
    display: flex;
    flex-direction: column;
    width: 32rem;
    margin-left: 0;
    overflow: hidden;
}

.studioimage {
    padding: 1rem;
    width: 630px;
    height: 355px
}

.parabottommargin {
    margin-bottom: 5rem;
}

.center {
    width: 96rem;
    margin: auto;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .vertical-center ul {
        margin-left: 3rem
    }

.redbutton {
    
    background-color: #cd0000;
    border: none;
    color: white;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    font-size: 16px;
    opacity:0.7;
}

    .redbutton:hover {
        opacity: 1
    }

.redbutton:hover {opacity:1}

.button1 { width: 120px;}
.button2 {width:140px;}


.licpanel::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.licpanel::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.licpanel::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
  .licpanel  ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/*The default font size of the root element is - if nothing else is specified in the stylesheet - 12pt, which is
100% and equal to 16px. There are 72 pts per inch so 12 pt is one sixth of an inch. On a 96 dots (pixels) per inch monitor this 
is equivalent to 16 dots/pixels. To make it 10px by default, we need to change the root font size to 62.5%:
100% / 16 * 10 = 62.5%
The 16 pixels (or 10 pixels, respectively) are device-independent pixels. The browser assumes a default
font size of 12pt. By changing this to 62.5% of 12pt, we define a base font size of 7.5pt which is equal to 10
hardware pixels on a 96 DPI system. This is much easier to calculate with - we just need to divide any "px"
value in the HTML code by 10.
The result in HTML Help on a high-resolution system is the same, but has one additional benefit: because
font sizes are now relative, the end user can adjust them for better readability1.*/
