@font-face {
    font-family: 'Louise';
    src: url('Louise-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

header {
    width: 100%;
    text-align: left;
    margin: 20px; /* Reset margin */
    padding: 0px; /* Reset padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

  
  .header-logo {
    width: 300px;
    height: auto;
  }
  
  .header-logo:hover{
    scale: 1.1;
    rotate: 5deg;
    filter: hue-rotate(10deg);
  }

  .menu {
    margin: 20px;
    padding: 20px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #001c64;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-size: 1.5em;
}

.menu ul li a:hover {
    color: white;
    scale: 1.1;
    text-shadow: 0 0 10px #ff35a8, 0 0 20px #ff35a8, 0 0 30px #ff35a8, 0 0 40px #ff35a8, 0 0 50px #ff35a8, 0 0 60px #ff35a8, 0 0 70px #ff35a8;
    transform: scale(1.1) rotate(5deg); /* Add rotation */
    transition: transform 0.3s ease; /* Smooth transition */
}

body {
    margin: 0;
    color: #001c64;
    letter-spacing: 0.010pt;
    padding: 20px;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    background-image: url('bg-placeholder.png'); /* Set the background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    padding: 20px;
    border-color: #ff35a8;
    border-style: dotted;
    border-radius: 20px;
    border-width: 5px;
    background-color: white;
    background-size: cover;
  }

  h1{
    color: #ff35a8;
    font-family: 'Louise', serif;
    font-size: 3em;
    margin-bottom: 0;
  }
  
  p {
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    color: #001c64;
  }
