@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
p, div{font-family: 'Outfit', sans-serif; font-size: 20px;}
body {
	background-image: url('/backgrounds/mariah-bunk.jpg');
   	background-size: cover;
}
p.outlined-text {
  font-family: 'Outfit', sans-serif;
  color: black;
  font-size: 23px;
  text-shadow: -1px -1px 0 #fff,
    1px -1px 0 #fff, 
    -1px 1px 0 #fff, 
    1px 1px 0 #fff; 
text-align: right;
margin: 0px;
}

.bigbox {
    display: flex;
    justify-content: center;
  }

  .container {
    display: flex;
    gap: 20px;
  }

  .column {
    display: flex;
    flex-direction: column;
    gap: 0; /* No gap between items */
  }
  .item {
    padding: 0px;
  }

  @media (max-width: 1000px) {
    .bigbox {
      padding: 10px; /* Adjust padding for smaller screens */
    }

    .container {
      flex-direction: column;
      gap: 0;
      align-items: center; /* Center the container */
    }

    .column {
      flex-direction: column; /* Keep items in column direction */
      width: 100%; /* Ensure column takes full width */
    }

    .item {
      width: 100%; /* Ensure items take full width */
    }  
}


.picture {
  text-align: right; 
  width: 100%;
  max-width: 800px;
  height: auto;}
.picture img { width: 100%;
  max-width: 800px;
  height: auto;}
.whitediv { background-color: white;
	    text-align: center;
	    margin: 5px;
}
a:link {
  color: #E49B0F;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #FFAC1C;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #FFEA00;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: FFBF00;
  background-color: transparent;
  text-decoration: underline;
}
p.title{
	font-size:40px;
	text-shadow: -1px -1px 0 #fff,
    	1px -1px 0 #fff, 
    	-1px 1px 0 #fff, 
    	1px 1px 0 #fff; 
	text-align: center;
	margin: 0px;
	color: black;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	}
p.undertitle {
	text-align: center;
	color: white;
	margin: 0px;
	}
.left,
.center,
.right {
  border: 1px;
  padding: 10px;
  box-sizing: border-box;
  color: white;
  font-size: 23px;
  text-shadow: -1px -1px 0 #000,
  1px -1px 0 #E49B0F, 
  -1px 1px 0 #000, 
  1px 1px 0 #000; 
  margin: 0px;
}

.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}

.containerinner {
    display: flex;
    justify-content: space-between;
    width: auto; /* Adjust as needed */
}
hr { margin: 3px;}