body {
    background: rgb(218, 218, 218);

}

.container {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 97vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
}

#button {
    /* position: absolute; */
    bottom: 3%;
    padding: 10px 17px;
    border-radius: 3px;
    background: lightslategray;
    border: unset;
    color: white;
    font-size: 1.3rem;
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

#button:hover {
    background: rgb(85, 98, 110);
}

h1 {
    width: 85%;
    font-size: 1.3em;
    text-align: center;
}

#image {
    /* position: absolute; */
    bottom: 15%;
    width: 85%; 
    height: auto; 
    size: cover;
    border-radius: 20px;
}

@media (min-width: 500px) {
    h1 {
        width: 80%;
        font-size: 2rem;
        text-align: center;
    }

    #image {
        width: 80%; 
        height: auto;
    }
}

@media (min-width: 768px) {
    h1 {
        width: 80%;
        font-size: 2rem;
        text-align: center;
    }

    #image {
        width: auto; 
        height: 75%;
    }
}



