    @import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Jura:wght@300..700&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Jura', sans-serif;
      background-color: #111;
      color: white;
      overflow: hidden;
    }

    .logo {
      position: absolute;
      top: 2rem;
      left: 3rem;
      width: 100px;
      height: auto;
      opacity: 0.8;
      z-index: 1000;
    }

    .slide {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /*text-align: center;*/
      text-align: left;
      transition: transform 0.8s ease-in-out;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      padding: 2rem;
    }

    .slide-heading {
      display: flex;
      flex-direction: row;
      gap: 10px;
    }

    .slide-button button {
      padding: 10px;
      margin-top: 25px;
      background: #224f87;
      border: none;
      border-radius: 15px;
      font-family: 'Jura', sans-serif;
      color: #eee;
      cursor: pointer;
    }

    .slide-button button:hover {
      background-color: transparent;
      color: #224f87;
    }

    .thesis h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .thesis h3 {
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
      color: #eee;
    }

    .thesis p {
      font-size: 1.5rem;
      color: #ccc;
      max-width: 700px;
      text-align: left;
    }

    footer {
      position: absolute;
      bottom: 1rem;
      width: 100%;
      text-align: center;
      color: #777;
      font-size: 0.9rem;
    }

    footer a {
      text-decoration: none;
      color: #eee;
    }