body {
    font-family: Georgia, 'Times New Roman', Times, serif, serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    }

nav {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    text-align: center;
    background-color: #000000;
    color: white;
    padding: 10px 20px;}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    display: inline-flex;}

nav a:hover {
    background-color: #575757;}

p {
    color: #ffffff;
    font-size: 1.5625rem; 
    text-align: center;
    margin-right: 6.25rem; 
    margin-left: 6.25rem; 
    text-shadow: #000000 2px 2px;}

h1 {
    color: #f4f4f4;
    font-size: 4.6875rem; /* 75px */
    text-align: center;
    margin-right: 6.25rem; /* 100px */
    margin-left: 6.25rem; /* 100px */
    font-family: 'Brush Script MT', cursive;
    text-shadow: #000000 3px 3px;}

h2 {
    color: #f4f4f4;
    font-size: 50px;
    text-align: center;
    margin-right: 100px;
    margin-left: 100px;
    font-family: 'Brush Script MT', cursive;
    text-shadow: #000000 3px 3px;}

image {
    display: block;
    width: auto;
    height: auto;}

/* Container holding the image and the text */
.container {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    color: rgb(0, 0, 0);}
/* Centered text */
.centered {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);}

a {
    color: #ffffff;
    text-decoration: none;}

a:hover {
    color: #b521ae;
    text-decoration: none;}


.column {
    flex: 25%; /* For 4 columns */
    padding: 10px; /* Some padding */}
    
.row {
    display:flex; /* Use flexbox to create a row */}

/* Responsive layout - when the screen is less than 600px wide,
make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {width: 100%;} }

.content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    height: 18vw;
    width: 100%;
    padding: 0px;}

input {
    background-color: #000000;
    width: 70%;
    margin-left: 12%;
    margin-right: 12%;
    padding: 16px 16px;
    border: none;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
    font-family: Arial, serif;}

input[type="submit"] {
    background-color: #000000;
    color: rgb(255, 255, 255);
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;}

textarea {
    background-color: #000000;
    width: 70%;
    margin-left: 12%;
    margin-right: 12%;
    font-size: 16px;
    padding: 16px 16px;
    border: none;
    margin-bottom: 25px;
    color: white;
    resize: none;
    font-family: Arial, serif;}
    

input[type="submit"]:hover {
    background-color: #a04595;}

input focus-within {
    outline: none;
    border-color: #a04595;
    border-width: 2px;}

textarea focus-within {
    outline: none;
    border-color: #a04595;
    border-width: 2px;}