*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: #1e90ff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: hidden;
    margin: auto;

}

.loupeTarget {

    background-color: #ffffff;
    border: 0;
    outline: 0;
    padding: 1.5rem 2rem;
    font-size: 4rem;
    font-family: monospace;
    box-shadow: 0px 5px 10px #0057ab;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 5px;
    margin: .5rem;

}

.loupe{
  position: fixed;
  top:1rem;
  right:1rem;
  color:#ffffff;
  font-size: 3rem;
  cursor: pointer;
}

.loupeTarget:hover {
    box-shadow: 0px 15px 25px -5px #0057ab;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.loupeTarget:active {
    box-shadow: 0px 4px 8px #0065c8;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

h2, h3 {
    font-family: 'Open Sans', sans-serif;
}

h2 {
    color: #333;
    text-align: center;
    margin: 10px 0;
}

img {
    display: block;
    margin: 12px;
    width: 400px;
    /*  float: right;*/
}

/*Necessary for class*/
.magnify {
    border-radius: 50%;
    position: absolute;
    z-index: 20;
    background-repeat: no-repeat;
    background-color: white;
    box-shadow: inset 0 0 23px rgba(0,0,0,.5);
/*     cursor: none; */
    margin: auto;
    overflow: hidden;

}

.magnify .content {
  position: absolute;
}

.magnify .content .loupeTarget {
     background: transparent;
     display:inline-block;
     line-height: normal;
     vertical-align: middle;
     -webkit-transition: none;
     transition: none;
     cursor: none;
     box-shadow: 0 0 0 0 transparent;
     -webkit-transform: scale(3);
     transform: scale(3);
}

.magnify .content .loupeTarget:hover {
    box-shadow: 0 0 0 0 transparent;

}
