.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.hero-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #000;
    opacity: 0.45;
}

.hero-content {
    width: 100%;
    max-width: 1230px;
    padding: 30px;
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hero-title {
    font-size: 80px;
    line-height: 85px;
    font-weight: 800;
    color: #FFF;
    text-shadow: 0 2px 2px #000;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform-origin: 50% 50% 0px;
    -ms-transform-origin: 50% 50% 0px;
    transform-origin: 50% 50% 0px;
    text-align: center;
}

.hero-subtitle {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    color: #FFF;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

.hero-btns {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn:first-child {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        line-height: 56px;
        text-align: left;
    }

    .hero-subtitle {
        text-align: left;
    }

    .hero-btns {
        display: block;
    }

    .hero-btns .btn:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

#title {
    font-family: 'Indie Flower', cursive;
    top: 25%;
    left: 65%;
    position: absolute;
    font-size: 10em;
    color: white;
}

.duck-button {
    position: absolute;
    top: 75%;
    left: 79%;
    transform: translate(-50%, -50%);
    transform: rotate(-30deg) skewX(25deg) translate(0,0);
    box-shadow: -20px 20px 10px rgba(0,0,0,0.5);
    display: flex;
    display: block;
    padding: 20px;
    background-color: white;
    line-height: 80px;
    transition: 0.5s;
    border: 0;
}

.duck-button:hover {
    background: #3fc8ff;
}

.duck-button:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -20px;
    height: 100%;
    width: 20px;
    background: #b1b1b1;
    transform: 0.5s;    
    transform: rotate(0deg) skewY(-45deg);
}

.duck-button:hover:before {
    background: #31a2ce
}

.duck-button:hover:after {
    background: #31a2ce;
}

.duck-button:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -10px;
    height: 20px;
    width: 100%;
    background: #b1b1b1;
    transform: 0.5s;    
    transform: rotate(0deg) skewX(-45deg);
}

.duck-button:hover #duck{ 
    color: white;
}

.duck-button:hover {
    transform: rotate(-30deg) skew(25deg) translate(20px, -15px);
    box-shadow: -50px 50px 50px rgba(255,255,255,0.5);
}

#duck {
    font-size: 5em;
    color: #29496F;
}

#site-text {
    position: absolute;
    color: white;
    font-size: .8em;
    top: 95%;
    left: 50%;
}


#animatedModal {
    position: fixed; 
    width: 100%; 
    height: 100%; 
    top: 0px; 
    left: 0px; 
    background-color: rgba(0,0,0,0.5) !important;
    overflow-y: auto; 
    overflow-x: hidden;
    z-index: 9999; 
    opacity: 1; 
    animation-duration: 0.7s;
}

#close-button {
    position: relative;
    color: white;
    top: 20%;
    left: 85%;
    font-size: 2em;
}

.modal-content {
    background-color: rgba(0,0,0,0.5) !important; 
    border: none !important;
    height: 100%;
}

.wrapper {
    margin: auto auto auto auto;
    width: 50%;
}

#imgleft {
    float: left;
    margin-right: 30px;
    margin-left: 30px;
}

#about-me {
    font-size: 1.2em;
    color: white;
    font-family: 'Caveat', cursive;
}

.profile-button {
    font-size: .5em;
    position: absolute;
    top: 65%;
    left: 57%;
    transform: translate(-50%, -50%);
    transform: translate(0,0);
    box-shadow: -20px 20px 10px rgba(0,0,0,0.5);
    display: flex;
    display: block;
    padding: 3px;
    background-color: white;
    line-height: 20px;
    transition: 0.5s;
    border: 0;
}

.profile-button:before {
    content: '';
    position: absolute;
    top: 3px;
    left: -5px;
    height: 100%;
    width: 5px;
    background: #b1b1b1;
    transform: rotate(0deg) skewY(-44deg);
    transform: 0.5s;
}

.profile-button:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    height: 5px;
    width: 100%;
    background: #b1b1b1;
    transform: 0.5s;    
    transform: rotate(0deg) skewX(-44deg);
}

.profile-button:hover {
    background-color: #3fc8ff;
    transform: rotate(2deg) skew(2deg, 2deg) translate(0px,0px);
    box-shadow: -50px 50px 50px rgba(255,255,255,0.1);
}

.profile-button:hover:before {
    background: #31a2ce
}

.profile-button:hover:after {
    background: #31a2ce;
}

.profile-button:hover #duck{ 
    color: white;
}