body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0px;
    padding-top: 30px;
}

.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed; 
    top: 0; 
    width: 100%; 
  }
  
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
.navbar a:hover {
    transition-duration: 0.4s;
    background: #ddd;
    color: black;
}

.main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    font-weight: bold;
    color: #333;
    font-size: 72px;
}

.colorchange {
    animation: change-color 3s linear infinite;
}

.colorchangefast {
    animation: change-color 0.9s linear infinite;
}

@keyframes change-color {
    0% { color: rgb(180, 50, 3); }
    25% { color: rgb(255, 0, 106); } /* Transition to Red */
    50% { color: rgb(242, 125, 187); } /* Transition to Pink */
    75% { color: rgb(255, 0, 106); } /* Transition back to Red */
    100% { color: rgb(180, 50, 3); } /* Transition back to Black */
}



p {
    font-size: 20px;
}

img {
    border-radius: 10px;
}

.imgcontainer img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    width: auto;
}

.imgcontainer {
    text-align:center;
}

.green-button {
    background-color: rgb(2, 193, 2); /* Set the background color to green */
    color: white; /* Set the text color to white for better visibility */
    padding: 10px 20px; /* Add some padding around the text */
    border: none; /* Remove the default border */
    border-radius: 5px; /* Add rounded corners */
    cursor: pointer; /* Change the mouse cursor to a pointer on hover */
    font-size: x-large;
    text-align: center;
}

.red-button {
    background-color: red; /* Set the background color to red */
    color: white; /* Set the text color to white for better visibility */
    padding: 10px 20px; /* Add some padding around the text */
    border: none; /* Remove the default border */
    border-radius: 5px; /* Add rounded corners */
    cursor: pointer; /* Change the mouse cursor to a pointer on hover */
    font-size: x-large;
    text-align: center;
}

.buttoncontainer {
    text-align:center;
}

.inline-form {
    display: inline;
}