* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
  }
  
  body {
    background-color: #b9c9e3;
    color: #1a3351;
    overflow-x: hidden;
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #b9c9e3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    z-index: 1000;
    padding-left: 2rem;
    padding-right: 6%;
  }
  
  header .logo a {
    font-size: 4rem;
    font-weight: bold;
    text-decoration: none;
    color: #1a3351;
  }
  
  header nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #1a3351;
    font-size: 0.9rem;
  }
  
  section {
    padding: 6rem 2rem 4rem;
    min-height: 90vh;
  }
  
  .home,
  .portfolio {
    display: flex;
    flex-direction: column;
  }
  .home {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 10rem
}

.home .slogan {
    font-size: 2rem;
    margin: 0;
}

.home a {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  
  
  .contact-button {
    margin-top: 10rem;
    margin-right: 12rem;
    background-color: #344769;
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    font-size:1rem;
    width: 100px;
    height: 40px;
    transition: all 0.5s;
  }

  .contact-button::after {
    content: "contact"
  }

  .contact-button:hover {
    width: 150px;
    height: 40px;
    padding-right: -1.5rem;


  }
  .contact-button:hover::after {
    content: "ydoit@ydoit.com";
    
    
  }
 
  .what h2,
  .who h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .what li,
  .who li {
    padding-left: 10%;
    font-style: italic;
  }


  
  .about {
    margin-bottom: 2rem;
  }
  
  .profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    display: flex;
  }

  
  
  .image-placeholder {
    width: 160px;
    
    display: flex;
  }

  .image-placeholder img {
    width: 160px;
  }
  
  .profile-text {
    padding-left: 20px;
    
  }

  .companies {
    list-style: none;
    padding-top: 2%;
  }
  
  .company {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  
  .company-logo {
    width: 160px;
    height: 130px;
    margin-right: 20px;
    flex-shrink: 0;

  }

  .company-logo img {
    width: 160px;
    padding-top: 40%;
  }
  
  .company h2 {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  
  
  .pfooter {
    background-color: #344769;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    margin-top: auto;
  }

  footer {
    background-color: #344769;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    margin-top: auto;
  }

  footer a {
    color: white;
    font-size: 0.9rem;
    text-decoration: none;


  }
