* {
    margin: 0 auto;
    padding: 5px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
}
body {
    background-color: #303c6c;
}

a:hover {
    color: #f3d250;
    border-bottom: 1px solid #f3d250;
}
.navs {
    margin: 15px 0 40px 0;
}

#about-me {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    text-align: center;
    width: 70%;
    border-radius: 10px;
    line-height: 2.5;
    background: rgb(93,162,213);
    background: radial-gradient(circle, rgba(93,162,213,0.4458158263305322) 0%, rgba(48,60,108,0.5018382352941176) 100%);
    font-size: 20px;
    color: #bab2b5;
    margin-top: 50px;
    margin-bottom: 50px;
} 

header {
    display: flex;
    margin: 0;
    justify-content: center;
}
.img-container {
    margin-top: 8%;
    margin-bottom: 5%;
    max-width: 300px;
    max-height: 300px;
    
}

.nav-link {
    text-align: center;
    color: #f78888;
    font-size: 20px;
}
aside {
    display: flex;
    flex-direction: column;
    color: #bab2b5;
}

.container {
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    color: #303c6c;
    
}

#skills {
    /* background-image: url('./img/yellow\ crowns.jpg'); */
    background-color: #f3d250;
    margin-left: 0;
}
.skill-section {
    margin-top: 10%;
    border-left: 2px solid #303c6c;
    border-right: 2px solid #303c6c;
    padding: 8px;
    font-size: 25px;
    background-color: #f3d250;
}
#work {
    background-color: #90ccf4;
    
}


.project-card {
    margin: 5px;
    background-color: #90ccf4;
    border: none;
}
.project-card a {
    color: #303c6c;
    font-size: 1.5em;
}
.resources {
    color: #303c6c;
    text-decoration: none;
}

.project-card a:hover{
    color: #f78888;
}
.social-links a {
    color: #90ccf4;
}
.social-links a:hover {
    color: #f3d250;
}

.skill-header {
    background-color: #303c6c;
    color: #f3d250;
    width: 50%;
}

.overlay {
    /* position: absolute;  */
    bottom: 0; 
    color: #f1f1f1; 
    width: 65%;
    transition: .5s ease;
    opacity:0;
    color: #303c6c;
    font-size: 20px;
    padding: 20px;
    text-align: center;
  }

  .repo-img:hover .overlay {
    opacity: 1;
  }

  .card-img-top:hover {
    width: 105%;
  }

  #contact-me {
      background-color: #303c6c;
      border: none;
  }

@media screen and (max-width: 576px) {
    #about-me {
        font-size: 10px;
    }
    .self-img {
        height: 90%;
    }
    }

