body{
    background-color: #F5F5F5;
    color: #364F6B;
    text-align: center;
    margin: 0;
    font-family: 'Karla', sans-serif; 
}
/* Nav bar */
.navbar {
    background-color: #3FC1C9;
    text-align: right;
    padding-top: 10px;
}
.nav-link{
    font-family: 'Karla', sans-serif;
    color:#F5F5F5;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 25px;
    position: relative;
    top: 5px;
}
.nav-link:hover{
    top: 0px;
    font-weight: bolder;
}

/* Containers */
.top-container {
    background-color: #3FC1C9;
    padding-top: 50px;
    position: relative;
    margin: auto;
}
.middle-container {
    padding: 4% 10%;
    text-align: left;
}
.bottom-container {
    background-color:#3FC1C9;
    padding-top: 10%;
    margin: 0;
}

/* Text styles */
h1{
    font-family: 'Dawning of a New Day', san-serif;
    color: #F5F5F5;
    font-size: 5.625rem;
    padding: 0;
    margin: 20px auto 0 auto;
    line-height: 2;
}
p{
    font-size: 1.2rem;
    line-height: 2;
}
.subtitle{
    font-family: 'Special Elite', san-serif;
    font-size: 1.5rem;
    color: #F5F5F5;
    padding: 0;
    margin-bottom: 50;
}
.section-title{
    color: #BD1465;
    padding-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

/* Hero */
.cloud {
    position: absolute;
    width: 10%;
    min-width: 100px;
}
.cloud:hover{
    padding: 10px;
}
.top-cloud{
    right: 30%;
    top: 0px;
}
.bottom-cloud{
    left: 20%;
    bottom: 30%;
}
.hero{
    margin: 100px auto 0 auto;
    padding-bottom: 0;
    width: 35%;
    min-width: 300px;
}

/* Intro section */
.profile {
    margin: auto;
    text-align: center;
}
.profile-pic{
    width: 18%; 
    min-width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 100%;
    display: inline-block;
    margin:0;
}
.profile-pic:hover{
    padding: 10px;
}

/* Work */
#contact {
    text-align: center;
}
li{
    color: #364F6B;  
    font-size: 1.2rem;
    line-height:1.5;
    list-style: none;
}
ul li::before {
    content: "\2022";
    color:#3FC1C9;
    font-weight: bold;
    display: inline-block; 
    width: 0;
    margin-left: -1.7rem;
    margin-right: 1.7rem
}
.skills, .contact-me{
    margin: 30px auto;
}
.work-logo{
    width: 90%;
    min-width: 80px;
}
.work-logo:hover{
    padding: 10px;
}
.skill-icon {
    color:#3FC1C9;
}
.skill-icon:hover {
    color:#BD1465;
}


/* Footer */
.footer-image{
    margin: 1%;
    position: relative;
    top: 5px;
}
.footer-image:hover, .footer-image:active{
    top: 0px;
}
.social-icon{
    color: #f1f1f1; 
    padding-bottom:10px;
}
.rl {
    width: 10%;
    min-width: 75px;
    max-width: 150px;
}
.copyright{
    color:#F5F5F5;
    padding: 10px;
    font-size: 1rem;
    margin: 0;
}

/* Horizontal ruler */
.dot {
    border-color:#3FC1C9;
    border-width: 8px;
    border-style: none;
    border-top-style: dotted;
    width: 3%;
    margin: 30px auto;
    padding-top: 2rem;
    background-color: none;
}

/* Buttons */
.btn{
    background:linear-gradient(to bottom, #BD1465 5%, #bd146698 100%);
    background-color:#BD1465;
    border-radius:9px;
    border:1px solid #F5F5F5;
    display:inline-block;
    cursor:pointer;
    color:#F5F5F5;
    font-family: 'Karla', sans-serif;   
    font-weight:bold;
    font-size: 1.2rem;
    padding:10px 30px;
    text-decoration:none;
}
.btn:hover {
    background:linear-gradient(to bottom, #bd146698 5%, #BD1465 100%);
    background-color:#bd146698;
    color: #364F6B;
}
.btn:active {
    position:relative;
    top:1px;
}
