body{
    background: rgb(76, 21, 90);
    height: 100vh;
}

.login-page{
    width: 360px;
    padding: 10% 0 0;
    margin: auto;
}

.form{
    position: relative;
    z-index: 1;
    background: rgb(0,18,54,1);
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
}

.form input{
    font-family: "Roboto", sans-serif;
    outline: 1;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.form button{
    font-family: "Roboto", sans-serif;
    text-transform:uppercase;
    outline: 0;
    background: #0728C3;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.form button:hover,.form button:active{
    background: #0728FF;
}

.form .message{
    margin: 15px;
    color: aliceblue;
    font-size: 16px;
}

.form .message a{
    color: #0728FF;
    text-decoration: none;
}

.nav{
    width: 100%;
    margin: 0 auto;
    background-color: #001236;
}

#navitem {
    height: 38px;
    padding: 5px;
}

#navspacer {
    width: 40%;
    height: 38px;
    padding: 5px;
}

article.background {
    background-color: whitesmoke;
}

h1 {
    font-family: "Roboto", sans-serif;
    text-align: center;
}

.homemsg {
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 20px;
}

#nosm {
    color: red;
}

.boysimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#thumb {
    width: 360px;
    height: auto;
    display: block;
}

#blue {
    height: 100%;
    width: 75%;
    background-color: rgb(0, 18, 54);
}

#white {
    background-color: antiquewhite;
    vertical-align: top;
    width: auto;
}

.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #0728C3;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button span {
   cursor: pointer;
   display: inline-block;
   position: relative;
   transition: 0.5s;

}

.button span:after {
   content: '\00bb';
   position: absolute;
   opacity: 0;
   top: 0;
   right: -20px;
   transition: 0.5s;
}

.button:hover span {
   padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

#blurb {
    color: rgb(0, 18, 54);
    font-family: "Lucida Calligraphy", Lucida, cursive;
}

img.landscape {
    width: 100%;
    height: auto;
  }

  img.portrait {
    width: 70%;
    height: auto;
  }