
body{
    background-color: rgb(197, 234, 250);
    font-family: 'Roboto';
    margin: 0;
    padding: 0;
}


/* Home Page */

.home-content{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 30px;
}

.home-content{
    
}
.image-container {
    text-align: center; /* Optional: to center the image on the page */
    margin-top: 50px; /* Optional: to add some space from the top */
}

.round-image {
    width: 250px; /* Set your desired width */
    height: 250px; /* Set your desired height */
    border-radius: 50%;
    object-fit: cover; /* Ensures the image covers the entire container without distortion */
    border: 2px solid #000; /* Optional: to add a border around the image */
}

.fade-float {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeFloat 1.5s ease forwards;
}

@keyframes fadeFloat {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





.navbar {
    display: flex;
    background-color: #2A6881    ;
    
    overflow: hidden;
    justify-content: space-around;


   
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-item {
    padding: 14px 20px;
}

.nav-item a {
    color: white;
    text-decoration: none;
    display: block;
}

.nav-item a:hover {
    color: #dbdbdb;
}


.icon {
    width: 25px;
    color: white;
}

.icon:hover{
    background-color: #667176;
}


.content-container{
}

.project-list{
    display: flex;
    flex-wrap: wrap;

    justify-content: space-around;
}



.project-item{
    padding: 5px;
}

.title{
    display: flex;
    align-items: center;
}

.title * {
    margin-right: 10px; /* Optional: Space between the items */
}
  
.title *:last-child {
    margin-left: auto; /* Push the last item to the right */
}

.fixed-width{
    width: 300px;
    display: flex;
    justify-content: center;
}


.description{
    width: 560px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.itch-download{
    width: 200px;
}

.game-banner{
    width: 560px;
    height: 315px;
}

.left-margin{
    margin-left: 8%;
}


.speak-list{

    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
    margin-left: 10%;
}

.speak{
    display: inline-grid;
    width: 350px;

    
}
.buffer{
    flex-grow: 1;
}


.text{
    width: 450px;
}






/* Blog */

main {
    max-width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

article {
    padding-bottom: 20px; /* Add padding below the article content */
    border-bottom: 2px solid #ccc; /* Light gray divider */
    margin-bottom: 20px; /* Space between the article and the next one */
  }
  
  article:last-child {
    border-bottom: none; /* Remove the divider for the last article */
  }

   .textButton {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
  }
  
   .textButton:hover {
    text-decoration: none;
  }
