* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
    
  @font-face {
    font-family: LogoFont;
    src: url(/Fonts/Mermaid1001.ttf);
  }
  @font-face {
    font-family: BodyFont;
    src: url(/Fonts/Butler_Medium.otf);
  }

  p {
    font-family: BodyFont;
    font-size: 20px;
    line-height: 1.8;
  }

  a {
    text-decoration: none;
  }
    
  li {  
    list-style: none;
  }
  
  #footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-color: black;
  }
  
  /* Styling for Navbar */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: black;
    color: #fff;
  }
    
  .nav-links a {
    color: #fff;
  }
    
  /* Logo */
  .logo {
    font-size: 32px;
  }
    
  /* Menu */
  .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
  }
  
  .menu li {
    padding: 5px 14px;
  }
  
  .menu li:hover {
    background-color: navy;
    border-radius: 5px;
    transition: 0.3s ease;
  }
    
  /* Menu's Dropdown */
  .contact {
    position: relative; 
  }
    
  /* Checbox work-around */
  input[type=checkbox]{
    display: none;
  } 
    
  /* Hamburger Menu */
  .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
  }
  
  /* Display menu bars on smaller screens */
  @media (max-width: 768px) {
    .menu { 
      display:none;
      position: absolute;
      background-color: #111642;
      right: 0;
      left: 0;
      top: 75px;
      text-align: center;
      padding: 16px 0;
      z-index: 100;
    }
  
    .menu li:hover {
      display: inline-block;
      background-color: #0951b0;
      transition: 0.3s ease;
    }
  
    .menu li + li {
      margin-top: 12px;
    }
    
    input[type=checkbox]:checked ~ .menu{
      display: block;
    }
    
    .hamburger {
      display: block;
    }
  }
  
  /* Picture and Text (homepage) */
  .container{
    float:right;
    width:100%;
    display: table-cell; 
    vertical-align: middle; 
    text-align: center;
  } 
  
  #image {
     width:40%;
     height: calc(100vh - 115px);
     float: left;
     display: flex;
     justify-content: center;
     padding-top: 15px;
     padding-bottom: 15px;
  }
  
  #image img {
    height:auto;
    max-width: 95%;
    object-fit: scale-down;
  }
  
  #content{
    float:left;
    width:60%;
    height: calc(100vh - 115px);
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 2%;
    padding-right: 2%;
    display: flex;
    padding-top: 30px;
    padding-bottom: 15px;
    align-items: center; 
    justify-content: center;
  }
  
  @media only screen and (max-width: 768px) {
  #image {
    width:100%;
    height: auto;
    padding-top: 4%;
    padding-bottom: 3%;
  }
  #content  {
    width:100%;
    height: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0px;
    padding-bottom: 40px;
    font-size: 18px;
    line-height: 1.5;
  }
  #image img {
      max-width:80%;
      max-height: 200px;
    }
  }
  
  /* Portfolio Pictures (portfolio) */
  #port {
    width:100%;
    height: calc(100vh - 115px);
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center; 
    justify-content: center;
  }
  
  /* Portfolio Pictures (portfolio) */
  #contact_form {
    width:100%;
    height: calc(100vh - 115px);
    display: flex;
    justify-content: center;
  }
