body {
    margin: 0px;
    background-color: #f0deb1;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    /*Prevent selecting text*/
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*Stop default scroll even when content fits page*/
    overflow: hidden;
    /* Prevent default touch behaviors*/
    touch-action: none;
}

header{
    background-color: rgba(20,20,20,0.8);
    font-size: 1.4rem;
    text-align: center;
    color: white;
    padding: 1vh 2vw;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 1vh 2vw;
    overflow-y: scroll;
    
    .container{
        background-color:rgba(20,20,20,0.8);
        padding: 1vh 2vw;
        margin-bottom: 2vh;
        border-radius: 8px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;

        .header{
            font-size: 1.4rem;
            margin-bottom: 1vh;
        }

        .body{
            display: flex;
            flex-direction: column;
            align-items: center;
            
        }
        

        img{
            border-radius: 8px;
            
        }
        li{
            margin-bottom: 1vh;
        }
        
        a:link, a:visited {
            color: rgb(79 179 255);
        }

        .full-width{
            width: 80%;
        }
        .highlighted{
            font-weight: bold;
            color: rgba(220,220,130,1);
        }
        img.inline{
            height:1rem;
            width:1rem;
            border-radius: 0px;
        }
        span.icon-inline-container{
            padding: 0.25vh;
            background-color: white;
            width: 1rem;
            height: 1rem;
            box-sizing: border-box;
            border-radius: 4px;
            
        }
    }
}

footer{
    background-color: rgba(20,20,20,0.8);
    font-size: 0.8rem;
    text-align: center;
    color: white;
    padding: 1vh 2vw;
}

.spacer{
    margin-top: 20vh;
}

.full-page-container {
    position: fixed;
    display: flex;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: space-between;

    box-sizing: border-box;
}

.full-page {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

