* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Navbar */
  
  header {
    background-color: #BE3144;
    color: white;
    font-size: 18px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 20px; 
  }
  
  .initials {
    width: 60vw;
  }
  
  #nav-bar {
    width: 35vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  
  ul li {
    list-style-type: none;
    display: inline;
    margin-right: 15px;
  }
  
  li a {
    text-decoration: none;
    color: white;
  }
  
  /* welcome-section */ 
  
  #welcome-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 400px;
    background-color:#000;
    color: #F0F0F0;
    font-size: 30px;
  }
  
  h4{
    color: #be3144;
    font-size: 25px;
  }
  
/* Projects Section */

  #projects{
    background-color:aliceblue;
  }
  #projects h2{
    text-align: center;
    font-size: 40px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .row,
  .row > .column {
    padding: 8px;
  }
  
  .column {
    float: left;
    width: 25%;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .content {
    background-color: white;
    padding: 10px;
  }
  
  /* Contact Section */

  #contact{

    background-color: #303841;
    color: white;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 35px;
    gap: 15px;
  }

  .ext-link a{
    color: white;
  }

  /* Footer Section */

  footer{
    background-color: #303841;
    color: white;
    text-align: center;
    font-size: 10px;
    height: 20px;
  }

  /* Media Queries */

  @media screen and (max-width: 900px) {
    .column {
      width: 50%;
    }
  }
  
  /* Additional media query for smaller screens */
  @media screen and (max-width: 600px) {
    .column {
    width: 50%;
    }
  }