@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital@1&display=swap');
p, div {font-family: 'Merriweather', serif;
	color: #20231C; font-weight: 600;
}
body {
	background-image: url('../backgrounds/donkey.jpg');
   	background-size: cover;
	background-attachment: fixed;
}
p.title {
  	font-size: 40px;
  	text-shadow: -1px -1px 0 #000,
    	1px -1px 0 #000, 
    	-1px 1px 0 #000, 
   	1px 1px 0 #000; 
	margin: 0px;
	text-align: center;
	font-weight: 600;
	margin-top: 30px;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	color: white;
}
p.undertitle {
  	font-size: 25px;
  	text-shadow: -1px -1px 0 #000,
    	1px -1px 0 #000, 
    	-1px 1px 0 #000, 
   	1px 1px 0 #000; 
	margin: 0px;
	text-align: center;
	color: #FFBF00;
}
.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;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.column {

    margin: 0 10px;
    box-sizing: border-box;
}
.picture {
  text-align: right; 
  width: 100%;
  max-width: 800px;
  height: auto;
}
.picture img { width: 100%;
  max-width: 800px;
  height: auto;
}
.left,
.center,
.right {
  border: 1px;
  padding: 10px;
  box-sizing: border-box;
  color: #FFBF00;
  font-size: 25px;
  text-shadow: -1px -1px 0 #000,
  1px -1px 0 #000, 
  -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;}
.smallimg img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
p.smalltxt {
	font-size: 20px;
  text-shadow: -1px -1px 0 #fff,
  1px -1px 0 #fff, 
  -1px 1px 0 #fff, 
  1px 1px 0 #fff; 
  font-weight: 600;
}
.imagessmall img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
.corner-imageL {
            position: absolute;
            top: 0;
            left: 0;
}
.corner-imageR {
            position: absolute;
            top: 0;
            right: 0;
}
.mirrored-image {
    transform: scaleX(-1);
}