body {
    height: 100vh;
    width: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    background-image:url('background.jpg');
    background-size:cover;
}
@font-face {
    font-family: social;
    src: url(Socialico.ttf);
}
#main{
    list-style:none;
    width:100vw;
    height:42px;
    line-height:42px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0;
    margin: 0;
    position:fixed;
    min-width: 1100px;
    z-index: 101;
  }
#main li, li.nohover, li.right {
    float:left;
    text-align:center;
    padding: 0px 10px 0px 10px;
    margin-right:40px;
    margin-left: 20px;
    border:none;
    overflow:visible;
  }
#main li .dropdown_wrapper {
    background-color: #CCCCCC;
    display: none;
    min-width: 100px;
    max-width: 250px;
    position: fixed;
    padding: 0;
    margin-left: -20px;
    text-align: left;
}
#main li:hover .dropdown_wrapper {
    display: block;
    overflow: visible;
    z-index: 200;
}
#main li .dropdown {
    width: inherit;
    height: inherit;
    margin: 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
}
#main li.nohover, #main li.nohover:hover {
    color: #6AC14E;
}
#main li.right {
    font-family: 'social';
    float: right;
    font-size: 32px;
    color: gray;
    margin-right: 20px;
    margin-left: 0px;
}
#main li.right a {
    color: gray;
}
#main li a {
    color:black;
    text-decoration:none;
  }
#main li a:hover {
    color: #4696CC;
}
.login, .signup, .forgot, .conf {
    height: 350px;
    width:274px;
    position:absolute;
    left:50%;
    top:50%;
    margin:-175px 0 0 -137px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    text-align: left;
    -webkit-animation: fadein 2s;
       -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
         -o-animation: fadein 2s;
            animation: fadein 2s;
}
.signup {
    height: 594px;
    width: 374px;
    margin:-297px 0 0 -187px;
}
.forgot, .conf {
    height: 210px;
    margin:-105px 0 0 -137px;
}
.login p, .signup p, .forgot p {
    margin:0;
    color: red;
    padding: 0;
    text-align: center;
}
.content {
    margin-top: 52px;
    width: 100vw;
    display: inline-block;
    position: relative;
    min-width: 1100px;
    -webkit-animation: fadein 2s;
       -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
         -o-animation: fadein 2s;
            animation: fadein 2s;
}
.login h1, .signup h1, .forgot h1, .confh1 {
    padding: 0;
    margin: 0;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}
.login input[type=text], .login input[type=password],
.signup input[type=text], .signup input[type=password],
.forgot input[type=text], .forgot input[type=password] {
    width: 274px;
    height: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.signup input[type=text], .signup input[type=password] {
    width:374px;
}
.login input[type=submit],
.signup input[type=submit],
.forgot input[type=submit] {
    float:right;
    border: 0 none;
    background-color: #4696CC;
    cursor: pointer;
    height: 38px;
    width: 62px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}
.login a, .signup a, .forgot a, .conf a {
    font-size: 12px;
    text-decoration: none;
    color: #4696CC;
}
.login a:hover, .signup a:hover, .forgot a:hover, .conf a:hover {
    text-decoration: underline;
}
.content a.info_link_box, a.info_link_box:visited {
    display: inline-block;
    width: 128px;
    height: 128px;
    background-color: rgba(255, 255, 255, 0.7);
    margin-right: 20px;
    margin-left: 20px;
    border: 2px solid transparent;
    text-decoration: none;
    color: black;
}
.content a.info_link_box:hover {
    border: 2px solid #4696CC;
}
@-o-keyframes fadein {
    from {opacity:0;}
    to {opacity: 1;}
}
@-webkit-keyframes fadein {
    from {opacity:0;}
    to {opacity: 1;}
}
@-moz-keyframes fadein {
    from {opacity:0;}
    to {opacity: 1;}
}
@-ms-keyframes fadein {
    from {opacity:0;}
    to {opacity: 1;}
}
@keyframes fadein {
    from {opacity:0;}
    to {opacity: 1;}
}