* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Common styles */
body {
    background-color: #F8C794;
    align-items: center;
    place-content: center;
    place-items: center;
    margin: 0;
    padding: 0;
}

.bar {
    width: 100%;
    height: auto; /* Change height to auto */
    background-color: #9B3922;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 3px white;
    box-shadow: 10px 10px #a7855f;
    padding: 20px; /* Add padding for spacing */
}

.one {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: center; /* Center align text */
}

.one h1 {
    color: white;
    font-size: 24px; /* Adjust font size */
    margin: 10px 0; /* Add margin for spacing */
}

.two {
    font-family: sans-serif;
    font-weight: 700;
    font-style: italic;
}

.two h2 {
    font-size: 14px;
    color: #fff;
    margin: 10px 0; /* Add margin for spacing */
    text-align: center; 
}

.image-container,
.image2-container,
.image3-container {
    margin-top: 20px;
    width: 100%; /* Set width to 100% */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img,
.image2-container img,
.image3-container img {
    max-width: 100%; /* Set max-width to 100% */
    height: auto;
    border: solid 3px white;
    animation: glow 2s infinite alternate;
}

.button {
    background-color: #9B3922;
    box-shadow: 4px 4px #6e2818;
    color: white;   
    margin-top: 7%;
    padding: 10px 20px; 
    text-align: center;
    /* text-decoration: double; */
    border: solid 4px white;
    border-radius: 5px; 
    cursor: pointer;
    font-family: "Staatliches", sans-serif;
    font-size: 16px;
    font-weight: 40px;
}

/* button:hover {
    opacity: 0.3;
} */

@keyframes glow {
    from {
        border-color: red;
    }
    to {
        border-color: orange;
    }
    to {
        border-color: green;
    }
    to {
        border-color: blue;
    }
    to {
        border-color: purple;
    }
    to {
        border-color: violet;
    }
    to {
        border-color: white;
    }
}

/* Media query for tablet and larger devices */
@media only screen and (min-width: 768px) {
    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    .bar {
        width: 100%;
    }

    .one h1 {
        font-size: 30px;
    }

    .two h2 {
        font-size: 18px;
    }

    .image-container img,
    .image2-container img,
    .image3-container img {
        max-width: 500px;
    }
}

/* Media query for desktop */
@media only screen and (min-width: 1024px) {

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    .bar {
        width: 100%;
    }

    .one h1 {
        font-size: 40px;
    }

    .two h2 {
        font-size: 20px;
    }

    .image-container img,
    .image2-container img,
    .image3-container img {
        max-width: 700px;
    }
}
