@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300,800);

body {
  font-family: "Dancing Script", cursive;
  font-weight: 300;
  color: #fff;
  background: linear-gradient(to bottom right, #0087c5, rgb(255, 255, 255));
  background-repeat: no-repeat;
}
.languages li{
    position: relative;
    display: block;
    float: right;
    margin: 0px;
    list-style-position: initial;
    list-style-image: initial;
    list-style-type: none;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #555;
}
li{
    float: left;
}
li a{
    display: block;
    color: white;
    text-align: center;
    padding: 2vw 2.2vh;
    text-decoration: none;
}
li a:hover{
    background-color: #111;
}
a {
    text-decoration:none;
    color:rgb(0, 0, 0);
    text-shadow: #333;
}
h1{
  font-family: "Dancing Script";
}
#wrapper{
    height: 100vh;
    width:100%;
}
.login{
    text-align: center;
    font-size: 100%;
    width: 25vw;
    height: 25vh;
    display: inline-block;
    margin:auto;
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    -webkit-text-stroke: none;
    text-shadow: rgb(0, 0, 0);
    overflow: hidden;
}
#welcome{
    font-family: "Dancing Script", cursive;
    font-size: 40px;
    text-align: center;
    width: 25vw;
    height: 25vh;
    opacity: 0;
    display:none;
    margin:auto;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    -webkit-text-stroke: none;
}
#title{
  font-family: "Dancing Script", cursive;
    font-size: 50px;
    text-align: center;
    width: 50%;
    margin:auto;

}
.entry{
    margin: 5vh 5vw;
}
#button{
    font-size: 100%;
    background-color: #555;
    width: 10vw;
    margin:auto;
    border-radius: 0.01%;
    color:white;
    text-align: center;
    display: inline-block;
}
.hide{
    opacity: 1;
    animation: hideaway 1s forwards;
}
@keyframes hideaway{
    to{
        opacity: 0;
        padding-left: 1vw;
        padding-right: 1vw;
    }
}
.big{
    animation: getBig 2s forwards;
  }
@keyframes getBig{
 to{
   transform: scale(2);
    }
}

.balloon {
    display: block;
    width: 215px;
    padding: 10px 10px 10px 15px;
    font-family: "Dancing Script", cursive;
    font-weight: 400;
    color: #377D6A;
    border: 0;
    border-radius: 3px;
    outline: 0;
    text-indent: 60px;
    transition: all .3s ease-in-out;
  }
  .balloon::-webkit-input-placeholder {
    color: #efefef;
    text-indent: 0;
    font-weight: 300;
  }
  .balloon + label {
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    bottom: 8px;
    padding: 5px 15px;
    color: #032429;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(19, 74, 70, 0);
    transition: all .3s ease-in-out;
    border-radius: 3px;
  }
  .balloon + label:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 100%;
    left: 50%;
    margin-left: -3px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 0.01vh solid rgba(122, 184, 147, 0);
    transition: all .3s ease-in-out;
  }
  
  .balloon:focus,
  .balloon:active {
    color: #303030;
    text-indent: 0;
    background: #fff;
  }
  .balloon:focus::-webkit-input-placeholder,
  .balloon:active::-webkit-input-placeholder {
    color: #aaa;
  }
  .balloon:focus + label,
  .balloon:active + label {
    color: #fff;
    text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
    background: #555;
    transform: translateY(-40px);
  }
  .balloon:focus + label:after,
  .balloon:active + label:after {
    border-top: 1px solid #7ab893;
  }
  .row{
      max-width: 800px;
      margin: 0 auto;
      height: auto;
      padding: 0.5vw 0.5vh;
      position: relative;
      z-index: 1;
      text-align: center;
  }
  .row:before{
      position: absolute;
      content:"";
      display: block;
      top: 0;
      left: 0;
      height:100%;
      width: 0;
      z-index: -1;
      background: inherit;
  }
  .row span {
      position: relative;
      display: inline-block;
      margin: 0.5vw 0.1vh;
  }
/* Style The Dropdown Button */
.dropbtn {
  background-color: #555;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  margin: 1vh 1vw;
  font-family: "Dancing Script", cursive;
  position: relative;
  display: inline-block;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.btn{
  border: 1px solid #555;
}
.btn:active,.btn:focus{
  color:rgb(200, 200, 200)
}
.w3-show-block,.w3-show{
  display:block!important
}
.w3-show-inline-block{
  display:inline-block!important
}