/* General styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e;
    color: #d3d3d3;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styling */
header {
    text-align: center;
    padding: 50px 0;
}

header h1 {
    font-size: 3em;
    color: #fff;
}

header h2 {
    font-size: 1.5em;
    color: #c4c4c4;
}

/* News section */
#news {
    margin-top: 40px;
}

#news h3 {
    font-size: 2em;
    color: #ffffff;
    text-align: left;
    border-bottom: 2px solid #474747;
    padding-bottom: 10px;
}

/* Blog post styling */
.blog-post {
    background-color: #2a2a2a;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.post-title {
    font-size: 1.8em;
    color: #fff;
}

.post-date {
    font-size: 0.9em;
    color: #909090;
}

.post-content {
    font-size: 1.1em;
    color: #c4c4c4;
    margin: 20px 0;
}

.read-more {
    text-decoration: none;
    color: #00bfff;
    font-weight: bold;
}

.read-more:hover {
    color: #0088cc;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px 0;
    color: #c4c4c4;
    border-top: 1px solid #474747;
    opacity: 0.5;
    
}
.no-link-style {
    color: inherit; 
    text-decoration: none; 
  }
  
  .no-link-style:hover {
    color: inherit;
    text-decoration: none;
  }

  .image-container {
    margin: 20px 0;
    width: 200px;
    height: 200px; 
    border-radius: 50%;
    overflow: hidden;
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#back-to-top:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive Design for Mobile (Only Button) */
@media only screen and (max-width: 600px) {
    #back-to-top {
        display: none;
    }
}
