/* Apply box-sizing to all elements */


@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200..800&display=swap');
@import "./palette.css";

* {
    box-sizing: border-box;
  }
  
  /* Style the body */
  body {
    background-color: #f6f5e1;
    margin: 0;
      font-family: "Karla", sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }

  p {
    color: rgb(85,85,85)
  }
  
  /* Transition */

  a,
  .btn {
    transition: all 300ms ease;
  }

  /* Horizontal navigation bar */
  nav, 
  .navbar {
    display: flex;
  }
  
  .navbar {
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
  }
  
  /* Links inside the navbar */
  .navbar a {
    color: #E3816C;
    padding: 16px 20px;
    text-decoration: none;
    display: block;
  }
  
  /* Hover effect */
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Main content */
  .content {
    margin-top: 60px;  /* Space for the fixed navbar */
    padding: 20px;
  }

  /* Home Section */
  #Home {
    display: flex;
    justify-content: left;
    gap: 5rem;
    height: 20vh;
  }
  .Section__pic-container{
    display: flex;
    height: 600px;
    width: 600px;
    margin: auto 0;
  }
  .homepage {
    align-self: right;
    text-align: center;
  }
  #aboutme {
    display: flex;
    justify-content: left;
  }
  .list {
    flex: 1;
  }
 

