
app {
    position: relative;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

html, body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.content {
    width: 100%;
    height: 100%;
}

.button {
    background-color: #323232;
    border: none;
    color: #F6F6F6;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 3.5vw;
    border-radius: 4px;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-style:normal;

    transition-duration: 0.2s;

    touch-action: manipulation; /* Prevent double tap to zoom*/
}

.button:hover {
    background-color: #424242;
}

.button:active {
    background-color: #333333;
}

p {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

* {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}

p.normal {

    color: #323232;
}

p.header {

    color: #5A5A5A;
    margin-bottom: 0;/*0.5em;*/
    /* can change margin-bottom to move even lower*/
}

p.header-solo {
    font-size: max(14px, 2.5vw);
}

p.header-multi {
    font-size: 2vw;
}

p.title {
    color: #323232;
}

p.title-solo {
    font-size: max(14px, 6vw);
    margin-left: 10px;
    margin-right: 10px;
}

p.title-multi {
    font-size: 5vw;
    margin-top: 1em;
    margin-bottom: 0;
}

p.header-line{
    font-size: min(14px, 3vw); /* scale for smaller, remain constant for larger screens */
    color:   #F6F6F6;
    margin-top: -1px;
    background-color: #323232;
    width: min(100px, 20vw);
    padding-top: 3px;
    padding-bottom: 3px;
    position:absolute;
    left: 2vw;
    text-align: center;
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);

}

hr {
    margin-top: 0;
    color: #323232;
    margin-bottom: 0;
    width:90%;

    background-color: #323232;
    color: #323232;

    border: 0 none;

    height: 1px;
}

.stroke {
    color: #323232;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

@media (max-width: 615px){
    .hidden-mob {
        display: none;
    }
}


