/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* For link color */
a:link, a:visited {
color:whitesmoke;
}

/* Top bar styles */
.top-bar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

/* Banner styles */

.banner {
    background-color: #222;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
}

span {
    text-align: left;
    color: bisque;
}

.banner-text {
    flex-basis: 50%;
    text-align: center;
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color:rgb(241, 241, 233)
}

.banner-text a {
    background-color: #fff;
    border-radius: 25px;
    color: #222;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-text a:hover {
    background-color: #222;
    color: #ffffff;
}

.banner-image {
    flex-basis: 40%;
    text-align: center;
}

.banner-image img {
    border-radius: 50%;
    height: 250px;
    width: 250px;
}

/* Discover my work and stories styles.. text */
.section {
    background-color: #444;
    color: #fff;
    padding: 50px 10%;
    text-align: center;
}

/*section h2 is for Discover my.. text */
.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: whitesmoke;
}

/* section p is for Check out...text */
.section p {
    font-size: 20px;
    margin-bottom: 50px;
    color:rgb(241, 241, 233)
}

.section-thumbnail {
    flex-basis: 22%;
    margin-right: 2%;
}

/* section is for the image size */
.section-thumbnail img {
    border-radius: 10px;
    height: 100px;
    margin-bottom: 10px;
    width: 175px;
}

/* section is for thumbnail title at bottom */
.section-thumbnail p {
    font-size: 14px;
    color:rgb(241, 241, 233)
}

.section-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Social buttons styles */
.social-buttons {
    margin-top: 30px;
  }
  
  .linkedin-button,
  .twitter-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .linkedin-button {
    background-color: #0077b5;
  }
  
  .twitter-button {
    background-color: #1da1f2;
  }
  
  .linkedin-button:hover,
  .twitter-button:hover {
    background-color: #555;
  }

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.footer a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}
