html {
    cursor: url(../../img/cursors/angel-blue-cursor2.png), default;
    background-image: url(../../img/angel-blue/background-bluebitmap.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

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: 50px 5vw 200px 5vw;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none; 
}

a:hover {
  color: #0011ff; 
}

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);
}

.header {
    display: flex;
    margin: auto;
    width: 100%;
    max-width: 1500px;
}

.header img {
    margin-top:5vw;
    width: 100%;
}
.image-container {
  display: column;
  max-width: 1500px;
  width: 100%; 
  margin: 0 auto; 
}

.image-container img {
    width: 100%;
}

.image-container:focus {
  outline: none !important;
}


a:focus {
    outline: none !important;
}

#angelblue-1 p {
    border: solid;
    border-width: 20px;
    border-radius: 20px;
    border-color:#EEEEEE;
    background-color:#EEEEEE;
    width:fit-content;

}
#angelblue-1 img {
    margin-top: 5vw;
    max-width:750px;
    width: 50%;
    height:auto;
    border: solid;
    border-width: 20px;
    border-radius: 20px;
    border-color:#EEEEEE;
    float: left;
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }
    .image-container img {
        width: 100%;
    }

    html {
        background-attachment:scroll;
    }
}