/* @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital@1&family=Montserrat&family=Sacramento&display=swap'); */

body{
    margin: 0;
    text-align: center;
    font-family: 'Merriweather', serif;
    height: 100vh;
    color: #40514e;
} /* #66bfbf; #11999e; */
h1{
    margin-top: 50px;
    margin-bottom: 0;
    font-family: 'Sacramento', cursive;
    font-size: 5.625rem;
    font-weight: bold;
    color: #66bfbf;
    /* line-height: 2; */
} /*  16px = 100% = 1em */
h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 2rem auto;
    color: #66bfbf;
}
h3{
    font-family: 'Montserrat', sans-serif;
    color: #11999e;
}
.top-container{
    position: relative;
    background-color: #e4f9f5;
    padding-top: 50px;
    margin-bottom: 10px;
}
.top-cloud{
    position: absolute;
    top: 8vh;
    right: 20vw;
}
.bottom-cloud{
    position: absolute;
    top: 55vh;
    left: 25vw;
}
.mountain-img{
    max-width: 35%;
}
#profile-picture{
    max-width: 20%;
}
hr {
    border: 5px dotted #d0f7f7;
    border-style: none none dotted; 
    color: #fff; 
    background-color: #fff;
    width: 7%;
    margin: 50px auto;
}

.skill-row{
    width: 50%;
    margin: 0 auto 100px;
    text-align: left;
}

.skill-row > img{
    max-width: 25%;
    /* clear: left; */
}
.giphy-img{
    margin-right: 30px;
    float: left;
}
.music-img{
    float: right;
    margin-left: 30px;
}
p{
    /* max-width: 50%; */
    margin: 0 auto 30px;
    line-height: 1.5;
}

i{
    font-size: 2.7rem;
    padding: 2rem 2.5rem 2rem;
    cursor: pointer;
}
.contact-me > p{
    margin-bottom: 50px;
}
.btn {
    background: #56bbbb;
    background-image: -webkit-linear-gradient(top, #66bfbf, #11999e);
    background-image: -moz-linear-gradient(top, #66bfbf, #11999e);
    background-image: -ms-linear-gradient(top, #66bfbf, #11999e);
    background-image: -o-linear-gradient(top, #66bfbf, #11999e);
    background-image: linear-gradient(to bottom, #66bfbf, #11999e);
    -webkit-border-radius: 28;
    -moz-border-radius: 28; 
    border-radius: 10px;
    font-family:  'Montserrat',Arial;
    color: #ffffff;
    font-size: 20px;
    padding: 13px 23px;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.1);
}
  
.btn:hover {
    background: #91dfdf;
    color: #ffffff;
    background-image: -webkit-linear-gradient(top, #91dfdf, #34b0b4);
    background-image: -moz-linear-gradient(top, #91dfdf, #34b0b4);
    background-image: -ms-linear-gradient(top, #91dfdf, #34b0b4);
    background-image: -o-linear-gradient(top, #91dfdf, #34b0b4);
    background-image: linear-gradient(to bottom, #91dfdf, #34b0b4);
    text-decoration: none;
    border: none;
}

.bottom-container{
    margin-top: 50px;
    background-color: #66bfbf;
}
.bottom-container > a{
    color: #0b8e92;
    z-index: 2;
}
.bottom-container > a:hover{
    color: #eaf6f6;
}
.bottom-container > p{
    color: #eaf6f6;
    padding-bottom: 20px;
}

@media (max-width:800px)  { 
    h1{
        font-size: 4rem;
    }
    .top-container > h2{
        font-size: 1.7rem;
    }
    .top-cloud{
        position: absolute;
        top: 10%;
        right: 10%;
        max-width: 25%;
    }
    .bottom-cloud{
        position: absolute;
        top: 75%;
        left: 8%;
        max-width: 25%;
    }
    .profile > p, .contact-me > p{
        max-width: 70%;
    }
    i{
        font-size: 1.5rem;
    }
}