.button {
    border-radius: 4px;
    background-color: #00b7ff;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 500px;
    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;
}

* {
    box-sizing: border-box;
}

body {
    height: 100%;
    font-family: "Sofia", sans-serif;
    font-size: 30px;
    text-align: center;
    height: 100%;
    background-color: #f2f2f2;
}

/* Two Column */
/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 10px;
    height: 500px;
    /* Should be removed. Only for demonstration */
    overflow: hidden;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
    border-radius: 25px;
}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}

body,
html {
    height: 100%;
    background-color: #f2f2f2;
}

.parallax {
    /* Full height */
    height: 100%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
/*
@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}
*/
.homeBtn {
      display: none;
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 99;
      font-size: 18px;
      border: none;
      outline: none;
      background-color: #00b7ff;
      color: white;
      cursor: pointer;
      padding: 15px;
      border-radius: 200%;
}