@font-face {
    font-family: "VCR-MONO";
    src: url(VCR_OSD_MONO.ttf);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0px,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );
}


body, html {
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: 'VCR-MONO', Arial, Helvetica, sans-serif;
    background-color: silver; 
}

h1 {
    margin: 0;
    text-shadow:
     1px  1px grey,   
    -1px -1px #fff 
}

hr {
 height: 0.5px; 
  border: none;
  border-top: 2px solid #ccc;  /* light line */
  border-bottom: 2px solid #9f9f9f; /* dark line */
  width: 100%;
}

.Header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;  
    background: linear-gradient(90deg, navy, #1084d0);
    height: 120px; 
    position: sticky;
    top: 0;
    border-bottom: 2px solid rgb(80, 80, 80);
   
}
 
.HeaderOptions {
    display: flex;
    gap: 20px;
}

.HeaderOptions a {
   text-decoration: none; 
   color: transparent;
   text-shadow: 0 0 #000000;
   font-size: 20px;  
   font-weight: bold;
}

.HeaderOptionButton {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: silver;
    width: 100px;
    height: 30px; 
    box-shadow: inset -2px -2px #0a0a0a, inset 2px 2px #fff, inset -4px -4px grey, inset 4px 4px #dfdfdf;
} 

.HeaderOptionButton:hover {
    box-shadow: inset -2px -2px #ffffff, inset 2px 2px #0a0a0a, inset -4px -4px #dfdfdf, inset 4px 4px grey;
    text-shadow: 0.7px 0.7px #000000; 
    /* outline: 1px dotted #222;
    outline-offset: -4px; */
}

.item-content {
    width: 30vw;
    background-color: rgb(165, 165, 165); 
    padding: 20px;
    box-shadow: inset -1px -1px #ffffff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
   
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px; 
} 

.item-image img {
    border-radius: 20px;
    box-shadow: 5px 5px 10px;      
}

.footer {
    display: flex;  
    background-color: rgb(163, 163, 163);  
    height: 50px; 
    justify-content: center;
    align-items: center; 
    margin-top: 50px;
    border-top: 2px solid rgb(211, 211, 211);   
}

.BodyContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ContactContainer {
    height: 75.5vh;  
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContactContainer a {
    background-color: rgb(165, 165, 165); 
    padding: 20px;
    box-shadow: inset -1px -1px #ffffff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
}

.BodyContainer p {
    width: 80vw;
    margin: 50px 50px 50px 50px;
    background-color: rgb(165, 165, 165); 
    padding: 20px;
    box-shadow: inset -1px -1px #ffffff, inset 1px 1px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
}

.BodyContainer iframe {
    width: 90vw;
    max-width: 700px;
    height: 500px;
}

@media (max-width: 768px) {
  .item {
    flex-direction: column;
  }

  .item-content {
    order: 1;
    width: 80vw;
  }

  .item-image {
    order: 2;
  }

  .BodyContainer p {
    margin: 50px 50px 20px 50px;
}
}

