/* body{
    background-color: ash;
} */

/**********************TAG SELECTORS**************************/
/* h1{
    color: red;
    font-size: 200px;
}
img:hover{
    background-color: gold;
}
.circular{
    border-radius: 100%;
} */

/**********************CLASS SELECTORS**************************/

/* .bacon{
    background-color: green;
}
.broccoli{
    background-color: red ;
} */

/**********************ID SELECTORS**************************/

/* #heading{
    color: blue
} */

/* ______________ 041 What We_ll Make - Stylised Personal Site ________________*/
body {
    margin: 0;
    text-align: center;
    font-family: "Merriweather", serif;
    font-size: 200%;
    color: #40514e 
    
}

h1 {
    /* margin-top: 0; */
    margin: 50px auto 0 auto;
    /* width: 10%; */
    /* margin: 0 auto 0 auto; */
    /* margin: 0 auto; */
    font-family: "Sacramento", cursive;
    font-size: 5.625rem;
    /* 16px = 100% = 1em */
    color: #66bfbf;
    line-height: 2;
}
h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: #66bfbf;
    padding-bottom: 10px;
}
h3 {
    font-family: "Montserrat", sans-serif;
    color: #11999e;
}
a{
    color: #11999e;
    font-family: 'Montserrat', sans-serif;
    margin: 10px 20px;
    text-decoration: none;
    
}
a:hover{
    color: #eaf6f6;
}
.top-container{
    /* height: 200px;
    width: 200px; */
    background-color: lightblue;
    /* display: inline-block; */
    background-color: #E4F9F5;
    margin: 0;
    padding-top: 7%;
}

.middle-container{
    /* height: 200px;
    width: 200px;
    background-color: yellow; */
    margin: 100px 0;
}

.bottom-container{
    /* height: 200px;
    width: 200px;
    background-color: gold; */
    background-color: #66bfbf;
    padding: 50px 0 20px 100px;
}
.bottom-container > p{
    padding-top: 25px;
    color: #eaf6f6;
}
.top-cloud, .bottom-cloud{
    width: 100px;
    position: absolute;
}
.ana{
    text-decoration: underline;
}
.intro{
    width: 30%;
    margin: auto;
}
.contact-message{
    width: 40%;
    margin: 40px auto 60px;
}
.copyright{
    color: #eaf6f6;
    font-size: 1rem;
    padding: 20px 0;
}
.bottom-cloud{
    position: relative;
    right: 250px;
    bottom: 300px;
}
.top-cloud{
    position: absolute;
    right: 33%;
    bottom: 75%;
    top: 40px;

}
p{
    font-weight: normal;
    line-height: 1.8;
}
.skill-row{
    width: 50%;
    margin: 100px auto;
    text-align: left;
}
hr{
    border: dotted #eaf6f6 20px;
    border-bottom: none;
    width: 4%;
    margin: 100px auto;
}
.skill-1{
    width: 30%;
    border-radius: 50%;
    float: left;
    margin-right: 30px;
}
.skill-2{
    width: 30%;
    border-radius: 50%;
    float: right;
    margin-left: 30px;
}
.profile{
    width: 50%;
    margin: auto;
    border-radius: 50%;
}
/* .code-skill-description{
    clear: left;
}
.code-skill-description-2{
    clear: right;
} */
a{
    color: #11999e;
    padding-right: 100px;
}

.btn {
    background: #11cdd4;
    background-image: -webkit-linear-gradient(top, #11cdd4, #3498db);
    background-image: -moz-linear-gradient(top, #11cdd4, #3498db);
    background-image: -ms-linear-gradient(top, #11cdd4, #3498db);
    background-image: -o-linear-gradient(top, #11cdd4, #3498db);
    background-image: -webkit-gradient(to bottom, #11cdd4, #3498db);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    color: #FFFFFF;
    /* font-family: Brush Script MT; */
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    /* font-weight: 100; */
    padding: 40px;
    -webkit-box-shadow: 1px 1px 20px 0 #000000;
    -moz-box-shadow: 1px 1px 20px 0 #000000;
    box-shadow: 1px 1px 20px 0 #000000;
    text-shadow: 1px 1px 20px #000000;
    border: solid #30e3cb 1px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
 }
 
 .btn:hover {
    border: solid #30e3cb 1px;
    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: -webkit-gradient(to bottom, #30e3cb, #2bc4ad);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-decoration: none;
 }