﻿@charset "utf-8";
@import url("fa/css/all.css");

.video-container {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100vw;
    height: 80%;
    overflow: hidden;
}

    .video-container video {
        /* Make video to at least 100% wide and tall */
        min-width: 100%;
        min-height: 100%;
        /* Setting width & height to auto prevents the browser from stretching or squishing the video */
        width: auto;
        height: auto;
        /* Center the video */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

h1 {
    font-size: 32pt;
    font-weight: bold;
    text-shadow: 0 0 .3em #000;
    margin: 0 0 1em;
}

p1 {
    font-size: 12pt;
    font-weight: bold;
    text-shadow: 0 0 .3em #000;
    margin: 1em 0;
}
p2 {
    font-size: 12px;
}

a {
    color: #848be8;
}


/*///////////////////////////////////////*/

code {
    font-family: monospace;
}

body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    background: #00000c;
    color: #999aa8;
    font-family: 'Oxygen', sans-serif;

}

#container1 {
    position: absolute;
    top: 0%;
    left: 0;
    height: 10%;
    width: 100vw;
    font-size: 0;
    background-color: #00000c;
    display: flex;
    min-height: 68px;
}

#container2 {
    position: absolute;
    top: 90%;
    left: 0;
    height: 8%;
    width: 100vw;
    font-size: 0;
    background-color: #00000c;
    display: flex;
    min-height: 68px;
}

#left, #middle, #right {
    display: inline-block;
    *display: inline;
    zoom: 1;
    margin: 0;
}

#left {
    width: 10%;
    text-align: center;
    margin: auto;
    display: flex;
}

#middle {
    width: 80%;
    font-size: 3vw;
    color: #696969;
}

#right {
    width: 10%;
    text-align: center;
    margin: auto;
    display: flex;
}

#cred {
    position: absolute;
    top: 98%;
    left: 0;
    height: 2%;
    width: 100vw;
    font-size: 8pt;
    background-color: #00000c;
    display: flex;
    min-height: 68px;
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%;
}
.img.sizer {
    height: 75%;
    width: 75%;
}

.dropbtn {
    background-color: #00000c;
    color: #696969;
    padding: 2px 2px;
    text-align: center;
    /*text-decoration: none;
    display: inline-block;
    margin: 2px 20px;*/
    font-size: 12px;
    border: 1px solid #696969;
    cursor: pointer;
}

    .dropbtn:hover, .dropbtn:focus {
        background-color: #041375;
    }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00000c;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: #696969;
        padding: 2px 2px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #041375
        }

.show {
    display: block;
}