/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    border-radius: 50px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  p {
    font-size: 18px;
  }
  
  #whats-up, #skills {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  li {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  footer {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 50px;
  }
  
  button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px; /* Adjust the margin-right value as needed */
    margin-bottom: 10px; /* Add margin-bottom to create vertical spacing */
  }
  
  button:hover {
    background-color: #1e6eb6;
  }
  