html {
  cursor: url(../../img/cd-design/cursor-standard.png), default;
}

a,button {
  cursor: url(../../img/cd-design/cursor-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: 1500px;
}

a {
  color: rgb(0, 0, 0);
  text-decoration: none; 
}

a:hover {
  color: #73BA00; 
}

html {
  background-color:#EEEEEE;
  background-size: cover;
}

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(4%, 1vw, 8%);
  margin-top: clamp(-100px, 1vw, -50px)
  
}

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(20px, 2vh, 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: flex;
  max-width: 1500px; 
  margin: 0 auto; 
}

.image-container img {
  height: auto; 
  width: 100%;
  max-width: 750px;
  object-fit: cover; 
  filter: drop-shadow(5px 5px 10px rgb(122, 122, 122))
}

.image-container:focus {
  outline: none !important;
}

.image-container-foursquare:focus {
  outline: none !important;
}

a:focus {
    outline: none !important;
}

.image-container-foursquare {
  display: flex;
  max-width: 1500px; 
  margin: 0 auto; 
}

.image-container-foursquare img {
  height: auto; 
  width: 100%;
  max-width: 750px;
  object-fit: cover; 
  filter: drop-shadow(5px 5px 10px rgb(122, 122, 122))
}

.image-container-fourrow {
  display: flex;
  max-width: 1470px; 
  margin: 0 auto 30px auto; 
}

.image-container-fourrow img {
  height: auto; 
  width: 100%;
  max-width: 750px;
  object-fit: cover; 
  filter: drop-shadow(5px 5px 5px rgb(158, 158, 158))
}


@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }
    .image-container img {
        width: 100%;
    }
}
