head {
    margin-top: 10%;
}

body {
   
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

    background-image: url("img/backgroundwarm.png");
    background-color: tomato;
    background-size: cover;
    background-attachment: fixed;
    }

.title {
    max-width: 50%;
    margin: 0 auto;
    margin-left: 23%;
}

.container {
    max-width: 1200px;
    max-height: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}


.image-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.container2 {
    max-width: 1200px;
    max-height: 1200px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    margin-top: 10%;

}