body {
    margin: 20px;
    padding-top: 50px;
    font-family: Arial, sans-serif;
    background-color: #EDEAE7;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Main container styles */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    background-color: #EDEAE7;
}

/* General content styles */
.home-container {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.home-container h1 {
    align-items: center;
    align-self: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.home-container p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.action-button {
    width: 200px;
    padding: 10px 20px;
    margin: 5px 0;
    background-color: #56513D;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.action-button:hover {
    background-color: #4d4835;
    scale: (1.1);
}

.text {
    font-size: 20px;
    align-items: center;
    align-self: center;
    max-width: fit-content;
    line-height: 1.5;
    text-align: justify;
}

.image-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.image-links a {
    text-decoration: none;
}

.img1,
.img2,
.img3,
.img4 {
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.img1 {
    width: 280px;
    height: 280px;
    margin-top: 30px;
    margin-left: 30px;
}

.img2 {
    width: 280px;
    height: 280px;
    margin-top: 30px;
}

.img3 {
    width: 450px;
    height: 320px;
    margin-left: 30px;
}


.image-links img:hover {
    transform: scale(1.1);
}

/* Media queries to adjust content width on different devices */
@media (max-width: 600px) {

    .home-container h1,
    .home-container p {
        text-align: center;
        width: 100%;
    }

    .container h1,
    .container h2 {
        text-align: center;
        width: 100%;
    }

    .image-links {
        flex-direction: column;
        align-items: center;
    }

    .img1,
    .img2,
    .img3 {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .home-container {
        padding-top: 20px;
    }
}

@media (min-width: 601px) and (max-width: 992px) {
    .content {
        padding: 15px;
    }

    .image-links {
        flex-direction: column;
        align-items: center;
    }

    .img1,
    .img2,
    .img3 {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
}

@media (min-width: 993px) {
    .content {
        padding: 20px;
    }

    .image-links {
        flex-direction: row;
        justify-content: center;
    }
}