
body {
    font: 100 15px/1.5 Helvetica, Verdana, sans-serif;
    color:white;
    background-image:url(/img/bg.jpg);
    background-repeat:no-repeat;
    background-size:cover;
}

#bodycontainer {
    width: 100%;
    margin: 0px auto;

}

b,
strong {
    font-weight: 900;
}

header {

}

h1 {
    font: 30px Helvetica, Verdana, sans-serif;
}

h2 {
    background: linear-gradient(to bottom, #A01227,black);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font: 20px Helvetica, Verdana, sans-serif;
    font-weight: 900;
    text-align: center;
}

h3 {
    text-align: left;
    font: bolder 18px Helvetica, Verdana, sans-serif;
}

header p {
    font: 15px/1.5 Helvetica, Verdana, sans-serif;
    text-align: justify;
}

#wait {
    background-color: rgba(245,245,245, 0.6);
    text-align: center;
    width:300px;
}

.home {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.static {
    overflow-y: auto;
    text-align: center;
}

.line {
    border: 2px solid #A01227;
}

.border {
    border: 1px solid #F55B1C;
}

.centerscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 50vw;
    max-width:70vw;
    transform: translate(-50%, -50%);
}

.fade {
    background-color: grey;
    width: fit-content;
    margin: 10px auto 0px auto;
    padding: 10px;
    text-align: left;
    border-radius: 8px;
}

    .fade.very {
        opacity:0.6;
    }

    .fade.less {
        opacity: 0.8;
    }

    .fade.little {
        opacity: 0.9;
    }

.nofade {
    width: 80%;
    margin: 0px auto 0px auto;
    padding: 10px;
    text-align: left;
    border-radius: 8px;
}

#main {
    width: 100%;
}
#content {
    float:left;
    width:100%;
    border-top:1px solid black;
}
#sponsors {
    text-align: center;

}


p {
    font: 15px Helvetica, Verdana, sans-serif;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
}
td {
    text-align: left;
    border: 1px solid black;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
}


td.clean {
    border: none;
}


.footer {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    border:2px solid white;
    border-radius: 8px;
    font-size: 11px;
    z-index: 1000;
}

#popForm {
    height: fit-content;
    width: fit-content;
    max-height: 600px;
    overflow: scroll;
}
#popFormData {
    height: fit-content;
    width: fit-content;
}


.btn3d {
    background: linear-gradient(to bottom, #F57B1C, #A01227);
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 8px;
    border: 2px solid #A01227;
    border-top-color: #A01227;
    border-bottom-color: #F57B1C;
    border-right-color: #F57B1C;
    border-radius: 5px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    cursor: pointer;
    white-space: nowrap;
}

.pulseText {
    animation: textPulse ease-in-out 1.5s 6 alternate;
}

@keyframes textPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }

    100% {
        opacity: 1;
    }
}

/* Menu stuff */



a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: wheat;
}


    .menu {
        display: block;
        margin-block-end: 0px;
    }

        .menu li {
            display: inline-block;
            position: relative;
            z-index: 100;
        }

            .menu li:first-child {
                margin-left: 0;
            }

            .menu li a {
                font-weight: 600;
                text-decoration: none;
                padding: 10px 15px;
                display: block;
                color: white;
                transition: all 0.2s ease-in-out 0s;
            }

                .menu li a:hover,
                .menu li:hover > a {
                    color: wheat;
                }

        .menu ul {
            visibility: hidden;
            background-color: darkslategray;
            opacity: 0;
            margin: 0;
            padding: 0;
            width: 170px;
            position: absolute;
            left: 0px;
            z-index: 99;
            transform: translate(0, 20px);
            transition: all 0.2s ease-out;
            border-radius: 8px;
        }

            .menu ul:after {
                bottom: 100%;
                left: 20%;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                margin-left: -6px;
            }

            .menu ul li {
                display: block;
                float: none;
                background: none;
                margin: 0;
                padding: 0;
            }

                .menu ul li a {
                    font-size: 0.8em;
                    font-weight: normal;
                    display: block;
                    color: white;
                    font-weight: 600;
                }

                    .menu ul li a:hover,
                    .menu ul li:hover > a {
                        color: wheat;
                    }

        .menu li:hover > ul {
            visibility: visible;
            opacity: 1;
            transform: translate(0, 0);
        }

        .menu ul ul {
            left: 169px;
            top: 0px;
            visibility: hidden;
            opacity: 0;
            transform: translate(20px, 20px);
            transition: all 0.2s ease-out;
        }

            .menu ul ul:after {
                left: -6px;
                top: 10%;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
            }

        .menu li > ul ul:hover {
            visibility: visible;
            opacity: 1;
            transform: translate(0, 0);
        }


