body {
    background-color: beige;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Courier New', monospace;
    color: black;
    text-align: center;
}

img {
    display: inline;
}

iframe {
    display: inline;
}

dialog {
    border: none;
    border-radius: 12px;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.page-title h1{
    background-color: red;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
    padding: 14px 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.button-row {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    width: 100%;
}

.button-row button {
    background-color: red;
    border: none;
    color: white;
    font-family: 'Courier New', monospace;
    transition: opacity 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0px;
    flex: 1;
}

button:hover {
    opacity: 0.7;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.content-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.photo-block {
    text-align: center;
}

.photo-block h3 {
    margin: 0;
    background-color: red;
    color: white;
    padding: 8px;
}

.photo-block img {
    display: block;
    width: 300px;
    height: 350px;
}

.text-block {
    flex: 1;
}

.text-block p{
    color: black;
    text-align: center;
    font-size: 16px;
    line-height: 2.0;
}

.car-photo {
    text-align: center;
}

.car-photo h3 {
    margin: 0;
    background-color: red;
    color: white;
    padding: 8px;
}

.car-photo img {
    display: block;
    width: 550px;
    height: 350px;
}

.input h1 {
    display: inline-flex;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
}

.extra-photos img {
    display: flex;
    width: 450px;
    height: auto;
    margin-bottom: 5px;
}

.extra-text p {
    color: black;
    text-align: center;
    font-size: 16px;
    line-height: 2.0;
}

.nav_bar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: red;
  z-index: 1000;
}

.image-container {
    position: relative;
    width: 100%;
}

.image-container img {
    width: 100%;
    display: block;
}

.newsletter-header {
    position: absolute;
    top: 10%;
    left: 50%; 
    transform: translateX(-50%);
    color: white;
    font-size: 60px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 2px black;
    margin: 0;
    z-index: 20;
}

.signup {
    background-color: transparent;
    position: absolute;
    top: 33%;
    left: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.signup button {
    background-color: red;
    border: none;
    border-radius: 6px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 25px;
    font-weight: bold;
    padding: 20px 60px;
    transition: opacity 0.3s ease;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.modal-buttons button{
    background-color: red;
    border: none;
    border-radius: 6px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    transition: opacity 0.3s ease;
}

footer {
    color: black;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    bottom: 0;
    left: 0;
    width: 100%;
}