/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
    box-sizing: border-box;
  }
  
  /******************************************
  /* LAYOUT
  /*******************************************/
  img{
    display: block;
    margin: 0 auto;
  }
  
  
  /******************************************
  /* ADDITIONAL STYLES
  /*******************************************/


  body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

input {
    padding: 10px;
    font-size: 1em;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #337ab7;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #23527c;
}

img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

iframe {
    width: 100%;
    height: 400px; /* Adjust as needed */
    border: none;
}

h3 {
    font-size: 1.2em;
    margin: 20px 0;
}

/* Add a starry night background */
body::before {
  content: "";
  background: url('/assets/starry-night.gif') center/cover fixed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

h1,
h2,
label,
input,
button,
img,
iframe,
h3 {
  position: relative;
  z-index: 1;
}

img {
  width: 100%; /* Adjust as needed */
  height: auto; /* Maintains aspect ratio */
}

.photo-container {
  display: flex;
  justify-content: space-between;
  background-color: black;
  width: 75%;
  margin: 5% auto;
  border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    padding: 2.5%;
    flex-direction: column;
}

h3 {
  font-size: xx-large; 
}

.hidden {
  display: none;
}