@charset "utf-8";

/*For desktop*/

/* class tag specification */
.center {
  margin: auto;
  height: 100%;
  width: 100%;
}

.responsive-iframe {
    display: block;
    height: 350px;
    width: 700px;
    margin: auto;
    border: none;
}

/*h1 tag specification */
h1 {
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    color: #ffffff;
    letter-spacing: 3.0px;
    font-size: 50px;
}

/* add a gradient bg */
body {
    background-color: #2b1331;
    background-image: linear-gradient(50deg, #2b1331 0%, #b9abcf 74%);
}

/* id tag specification */
#explanation{
    margin: auto;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    width: 70%;
    padding-top: 25px;
    padding-bottom: 20px;
    line-height: 1.3;
    color: #d6d6d6;
}

/*For iPhone 6/7/8*/

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) { 

h1 {
    text-align: center;
    font-size: 15px;
    letter-spacing: 1.0px;
}

.responsive-iframe {
    display: block;
    height: 250px;
    width: 350px;
    margin: auto;
    border: none;
}

#explanation{
    font-size: 13px;
    width: 90%;
}
