/* this is the style sheet for my about section... it's basically the same, but a little different ;-) */

html, body {
  cursor: url('../img/cursors/apple-cursor-4.png'), auto !important;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

a,button {
  cursor: url(../img/cursors/apple-pointer-3.png), default;
}

@font-face {
    font-family: 'basiic';
    src: 
        url("../assets/fonts/basiic.ttf");
        /* thank u to cinni.net for this font */
}

@font-face {
  font-family: 'SpaceMono';
  src:
  url("../assets/fonts/Space_Mono/SpaceMono-Regular.ttf");
}

@font-face {
    font-family: 'corporate s';
    src: 
        url("../assets/fonts/corporate-s-reg/Corporate-s.otf");
}        

@font-face {
    font-family: 'unibody 8';
    src:
      url("../assets/fonts/Unibody8Pro-Regular.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: 4% 0 0 0;
    text-align: left;
    background-color: #EEEEEE;
}

h1 {

    font-family: 'unibody 8';
    font-size: 40px;
    text-align: center;
    font-weight: normal;
    padding-top:50px;
    margin-bottom: 2%;
  
}

h2 {

    font-family: 'corporate s';
    font-size: .5em;
    
}

p {
    font-family: 'corporate s';
    font-size: 1em;
    line-height: 1.4;
    margin-top: -5px
}

pre {
  font-size: 1.25em;
  margin-top: 1vh;
}


img {

  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;

}

a {
  color: #73BA00;
  text-decoration: none; 
}

a:hover {
  color: black; 
}

.navbar a {
  color: black;
  text-decoration: none; 
}

.navbar a:hover {
  color: #73BA00; 
}

.parent {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.text-column {
  flex: 1; 
  min-width: 0; 
}

/* Standard Desktop View */
.responsive-container {
  display: flex;
  align-items: flex-start; 
  gap: 10px;               
  max-width: 1500px;
  margin: 0 auto;
}
.responsive-image {
  max-width: 50%;        
  height: auto;
} 

html:active, 
body:active, 
a:active, 
button:active {
  cursor: url(../img/cursors/apple-pointer-3.png), default !important;
}

/* Mobile View (Below 768px) */
@media (max-width: 768px) {
  .responsive-container {
    flex-direction: column !important;
    align-items: center; 
    max-width: 100%;
  }
  .responsive-image {
    max-width: 100%;      
  }
}

@media (max-width: 500px) {
  pre {
    font-size: 3vw; 
  }
}