#strat {
    background:var(--main-bg-color) url("../artwork/strat_bg2.png") repeat-y;
    color:white;
    padding-bottom: 2em;
}

#strat h1 {
    font-weight: normal;
    padding: 0px;
    padding-right:1em;
    font-size: 6rem;
    padding-top:60px;
    -webkit-text-fill-color:rgba(236,232,225,1);
    -webkit-text-stroke: 1px black;
    line-height: 80%;
    max-width:100vw;
    overflow:hidden;
    margin:0px;
    text-align:right;
}
#strat h1 span {
    display:inline-block;
    overflow-wrap:break-word;
}
#strat h1 span:first-child {
    font-size:1.2em;
}

#strat h1 span.title_sub {
    font-size: 0.5em;
    position:relative;
    bottom: 0.5em;
}

#strat .strat-container {
    margin: 5vh 0px 0px 27vw;
    padding: 0px;
    position:relative;
}

#strat-title {
    margin:0px;
    padding:0px;
    font-size: 4em;
    letter-spacing:0.1em;
    font-family: "Anton";
    font-weight: normal;
    color:red;
    text-shadow:2px 2px white;
    position: absolute;
    left: -1em;
    top: -0.85em;
    white-space: nowrap;
    display:inline-block;
}

#strat-body {
    background-color:black;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

#strat-description {
    margin: 0px;
    padding: 2.5em 30vw 1.5em 3vw;
    font-size: 1.5em;
    position:relative;
}

.strat-player {
    display: inline-block;
    border-bottom: 1px dashed white;
}
.strat-player:hover {
    color:red;
}

#strat-scoring {
    margin: 0px;
    padding: 0em 30vw 0em 3vw;
    background-color: red;
    border-bottom-left-radius: 6px;
    
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#strat-scoring p {
    margin:1em 0px;
}

#strat-scoring-widget {
    text-align: right;
    position:relative;
    bottom: 0.5em;
    right: 1em;
    font-family:Valorant;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#strat-scoring-caret {
    display:inline-block;
    transition: transform .2s;
}

.strat-caret-rotate {
    transform: rotate(-90deg);
}

#strat-scoring-widget::before {
    content:"show scoring ";
    transition: opacity 1s ease-out;
    opacity:0.4;
}

#strat-scoring-widget:hover::before {
    opacity:1;
}

.reroll-button {
    text-align:center;
    font-weight: bold;
    color:tan;
    font-size:8rem;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 80%;
    margin-top:0.4em;
}

.reroll-button span {
    background-color:var(--main-bg-color);
    cursor:pointer;
}

.reroll-button span:hover {
    color:red;
}

#modal-help {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(236,232,225,0.8);
}

#modal-help-close {
    float:right;
}
#modal-help-close:hover, #modal-help-close:focus {
    color:red;
}

.modal-help-content {
    color: white;
    background-color: black;
    margin: 6% auto;
    border-radius: 1em;
    width: 80%;
    position:relative;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.modal-help-content h1,
.modal-help-content h2{
    margin: 0px 1em;
    padding: 0.5em;
}

.modal-help-content h3 {
    margin:0px;
    padding:0px;
}

.modal-help-content p {
    margin: 0.5em;
    padding: 0px 0.5em;
}

.modal-help-content div {
    color: black;
    background-color: white;
    margin: 0px;
    padding: 1em 2em;
}

@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}

@media only screen and (max-width: 1200px) {
    #strat-description {
        margin: 0px;
        padding: 2.5em 23vw 1.5em 3vw;
    }
    #strat-scoring {
        margin: 0px;
        padding: 0em 23vw 0em 3vw;
    }
    #strat .strat-container {
        margin: 10vh 0px 0px 20vw;
    }
}

@media only screen and (max-width: 800px) {
    
    #strat {
        background-image: none;
    }
    
    #strat-description {
        padding: 1.5em 0.5em 0.5em 0.5em;
        font-size: 1.2em;
    }
    
    #strat .strat-container { margin: 0px; padding:0px; }
    
    #strat-title {
        font-size: 2.2em;
        font-family: "Anton";
        position:relative;
        top:0.5em;
        left:0.5em;
        max-height: 1.5em;
        overflow:hidden;
    }
    
    #strat h1 {
        font-size:4rem;
    }
}



