/************ TAG SELECTIVE ****************/
body {
    margin: 0;
    text-align: center;
    font-family: 'Merriweather', serif;
    color: #40514E;
}

h1 {
   margin: 50px auto 0 auto;
   font-family: 'Sacramento', cursive;
   font-size: 7rem;  /* dynamic size : 1rem is 16px */
   color: #66BFBF;
}

h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: bolder;
    color: #66BFBF;
    padding-bottom: 10px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: bolder;
    color: #11999E;
}

p {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 2;
}

ul {
    margin: 0 auto auto 10px;
    display: inline-block;
    text-align: left;
    width: 60%;
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: bold;
}

hr {
    margin: 50px auto;
    border: dotted #EAF6F6 10px;
    border-bottom:  none;
    width: 5%;
}

/************ CLASS SELECTIVE ****************/

.top_container {
   background-color: #EAF6F0;
   position: relative;
   padding-top: 100px;
}
.middle-container {
    margin: 100px 0;
}
.my-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #66BFBF;
}
.top-cloud {
    position: absolute;
    top: 100px;
    right: 200px;
}
.bottom-cloud {
    position: absolute;
    left: 200px;
    bottom: 300px;
}

/****/

.intro-row {
    margin: 20px auto 20px auto;
    width: 60%;
    text-align: center;
    position: relative;
}
.skills {
    text-align: center;
}
.skill-row {
    margin: 10px auto 20px auto;
    width: 35%;
    text-align: left;
    position: relative;
}
.icons-left {
    width: 4rem;
    margin: auto 20px auto 40px;
    float: left;
}
.icons-right {
    width: 4rem;
    margin: auto 40px auto 20px;
    float: right;  /* use clear: right to prevent wrap around */
}
.contact-line{
    width:40%;
    margin: auto;
}
.contact-me {
    margin: auto;
    width: 50%;
}

.button {
    margin: 50px auto 50px auto;
    text-align: center;
}
.btn {
      background: #11cdd4;
      background-image: -webkit-linear-gradient(top, #11cdd4, #11999e);
      background-image: -moz-linear-gradient(top, #11cdd4, #11999e);
      background-image: -ms-linear-gradient(top, #11cdd4, #11999e);
      background-image: -o-linear-gradient(top, #11cdd4, #11999e);
      background-image: linear-gradient(to bottom, #11cdd4, #11999e);
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

.btn:hover {
      background: #30e3cb;
      background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad);
      background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad);
      background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad);
      background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad);
      background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad);
      text-decoration: none;
}

.bottom-container {
   background-color: #66BFBF;
   position: relative;
   padding-bottom: 100px;
}

.footer-link {
    display: inline-block;
    position: relative;
    padding: 40px 10px;
    color: #11999E;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: bolder;
    text-decoration: none;
}
.footer-link:hover {
    color: #EAF6F6;
}

/**** IDs ****/
#copyright {
    color: #EAF6F6;
    font-size: 0.75rem;

}