html {
    cursor: url(../img/cursors/spiral-cursor.png), default;
    background-color:#EEEEEE;
    background-size: cover;
}

a,button {
  cursor: url(../img/cursors/spiral-pointer.png), default;
}

@font-face {
    font-family: 'corporate s';
    src: 
        url("../../assets/fonts/corporate-s-reg/Corporate-s.otf");
}        

.navbar {
    position: fixed;
    display: flex;
    gap: 27px;
    padding: 30px 0 0 clamp(25px, 2vw, 75px);
    font-size: 1.1em;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'corporate s';
    text-decoration: none;
}

body {
    margin: auto;
    padding: 200px 0 200px 0;
    background-color: #EEEEEE;
    max-width: 1200px;
}

a {
  color: rgb(0, 0, 0);
  text-decoration: none; 
}

a:hover {
  color: #73BA00; 
}

p {
    font-family: 'corporate s';
    font-size: clamp(.5em, 2.5vw, .75em);
    text-align: right;
    line-height: 1.5em;
    margin-top: 0px;
    margin-bottom: clamp(50px, 2vh, 70px);
}

h1 {

    font-family: 'corporate s';
    font-size: clamp(1em, 2.5vw, 1.2em);
    font-weight: normal;
    text-align: right;
    margin-top: 2vh;
    margin-bottom: 4px;
}

h2 {

  font-family: 'corporate s';
  font-size: clamp(2em, 2.5vw, 2.4em);
  font-weight: normal;
  text-align: center;
  margin-bottom: clamp(5%, 1vw, 10%);
  margin-top: clamp(-100px, 1vw, -50px)
  
}

.green {
    color: #73BA00;
    text-align: right;
    margin-top: clamp(7px, 1vw, 14px);
    margin-bottom: clamp(20px, 5vw, 80px);
    font-size: clamp(.75em, 2.5vw, 1em);
}

.green2 {
    color: #73BA00;
    text-align: right;
    margin-top: clamp(5px, 1vw, 12px);
    margin-bottom: clamp(20px, 5vw, 80px);
    font-size: clamp(.75em, 2.5vw, 1em);
}

.image-container {
  display: column;
  max-width: 1200px;
  width: 100%; 
  margin: 0 auto; 
}

.image-container img {
    width: 100%;
}

.image-container:focus {
  outline: none !important;
}


a:focus {
    outline: none !important;
}

.image-button {
  width: 150px; /* Match your image width */
  height: 50px; /* Match your image height */
  background-image: url('../img/drawing/button.png');
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  background-color: transparent; /* Removes default button grey */
}

.image-button:hover {
  opacity: 0.8; /* Simple hover effect */
}

.audioplayer {
    margin-top: -90px;
    margin-left: 20px;
}


@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }
    .image-container img {
        width: 100%;
    }
}
