@font-face {
    font-family: 'capitalfont2';
    src: url('fonts/monkletter.woff') format('woff'); 
}

@font-face {
    font-family: 'capitalfont';
    src: url('fonts/Jugend.woff') format('woff'); 
}

@font-face {
    font-family: 'bodytext';
    src: url('fonts/eland.woff') format('woff'); 
}

body {
    font-family: "bodytext", Times, serif;
    line-height: 1.1;
    font-size: 1.5em;
    background-image: url('img/woodtexture.jpg'); 
    background-repeat: repeat; 
    background-attachment: fixed; 
    color: #49361d;
    margin: 0;
    padding: 20px;
    text-align: justify;
}

.float-right {
    float: right; 
    margin-left: 15px; 
    border: 1px solid #49361d;
    padding: 2px;

}

/* 5.5em monkletter */
p::first-letter {
    font-family: 'capitalfont'; 
    font-size: 3.85em; 
    color: #CC0000;
    float: left;
    line-height: 0.6; 
    margin: 0.35em 0em 0em 0em; 
    padding: 0; 
    text-shadow:
        -3px -3px 0 #dbc3a3,
         3px -3px 0 #dbc3a3,
        -3px  3px 0 #dbc3a3,
         3px  3px 0 #dbc3a3;
}

.p1::first-letter {
    font-family: 'capitalfont'; 
    font-size: 3em; 
    color: #43302E;
    float: left;
    line-height: 0.6; 
    margin: 0.35em 0.05em 0em 0em; 
    padding: 0; 
    text-shadow:
        -3px -3px 0 #dbc3a3,
         3px -3px 0 #dbc3a3,
        -3px  3px 0 #dbc3a3,
         3px  3px 0 #dbc3a3;
}


.main-body {
    max-width: 800px; 
    margin: 0 auto; 
    background-color: #F4EBC3; 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5); /* Horizontal offset, vertical offset, blur radius, color */
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; 
}
.grid-item {
  /*border: 1px solid #ddd;*/
  padding: 10px;
  margin: -1.7em 0em 0em 0em; 
}

a {
  color: red;       /* Sets the color of the link text to red */
  text-decoration: none; /* Removes underline from links */
}

a:hover, a:active {
  text-decoration: underline; /* Adds underline on hover/active for better user experience */
}

