@import url('https://fonts.googleapis.com/css?family=Coda');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);

body {
    background-image: url(../images/wbw.jpg);
    background-position: center;
    /*background-repeat: no-repeat;*/
    background-size: cover;
    font-family: 'Coda', cursive;
    margin: 0 auto;
}

#Logo {
    position: relative;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#Locus {
    left: 5%;
    height: 185px;
    position: relative;
}

#Stud {
    background: #00AEEF;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #00AEEF;
    cursor: pointer;
    display: inline-block;
    font-size: 25px;
    height: 175px;
    line-height: 175px;
    position: absolute;
    text-align: center;
    transition: 1s;
    width: 175px;
}

#Stud:hover {
    box-shadow: 0 0 25px #00AEFF;
    transform: scale(1.1);
}

#Container {
    text-align: center;
}

.Split {
    display: inline-block;
    padding: 212px;
}

label {
    cursor: pointer;
    height: 350px;
    perspective: 1000px;
    position: absolute;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    width: 350px;
    -webkit-perspective: 1000px;
    -webkit-transform: translate(-50%, -50%);
    -webkit-transform-style: preserve-3d;
}

input {
    display: none;
}

.Surface {
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: all 600ms;
    width: 100%;
    z-index: 20;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: all 600ms;
}

.Surface div {
    backface-visibility: hidden;
    background: #FF7007;
    border: 10px solid #FFFFFF;
    box-shadow: 0 0 0 10px #FF7007;
    border-radius: 50%;
    color: #000000;
    font-size: 37.5px;
    height: 100%;
    line-height: 350px;   
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
}

.Surface .Back {
    background: #0F0F0F;
    box-shadow: 0 0 0 10px #0F0F0F;
    color: #FFFFFF;
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

label:hover .Surface {
    transform: rotateX(20deg);
    -webkit-transform: rotateX(20deg);
}

:checked + .Surface {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

label:hover :checked + .Surface {
    transform: rotateX(160deg);
    -webkit-transform: rotateX(160deg);
}

h2 {
    font-size: 24px;
    line-height: 170px;
    margin: 0 auto;
}

ul {
    font-size: 18px;
    position: relative;
    left: 25%;
    margin-top: -55px;
    padding: 6px;
    text-align: left;
}

li {
    line-height: 30px;
}

button {
    background: none;
    border: none;
    display: flex;
    font-size: 1em;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}

a {
    text-decoration: none;
}

.fa-info-circle {
    color: white;
    font-size: 1em;
    transition: .5s;
}

.fa-info-circle:hover {
    color: #00AEFF;
    text-shadow: 0 0 50px #00AEFF;
}

.formP {
    display: none;
}

#cForm {
    background: #FFFFFF;
    height: 50%;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 50%;
}

input[type=text] {
    background: none;
    border: 2.5px solid #0CF;
    border-radius: 5px;
    color: #F0F0F0;
    box-shadow: 0px 0px 7.5px #0CF;
    height: 37.5px;
    font-family: Hacked;
    font-size: 20px;
    margin: 12.5px 0px;
    padding: 0;
    width: 87%;
}
    

@media screen and (max-width: 570px) {

    .Logo {
        height: 150px;
    }

}