* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html {
    font-size: 62.5%;
    font-family: 'Inter', sans-serif;
}
body { background: #fafafa; }
main {
    position: relative;
    width: 100%;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.6rem;
    padding: 40px 20px 20px 20px;
    text-align: center;
}
.button {
    background-color: #440a67;
    padding: 10px;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    outline: none;
}
h4 {
    text-transform: uppercase;
    color: #440a67;
    margin-bottom: 5px;
}
h2 {
    font-weight: bold;
}
p {
    margin: 10px 0;
    color: gray;
}
small {
    margin-bottom: 15px;
    color: gray;
}
.clear {
    margin-top: 15px;
    text-decoration: none;

}
section#images {
    padding: 40px 20px;
}
.container-image {
    width: 250px;
    height: 300px;
    border-radius: 8px;
    background-color: #999b84;
    margin-bottom: 15px;
}
.container-image img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.modal-alert {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    padding-left: 20px;
    padding-right: 20px;
    transition: .3s all ease;
}
.alert {
    position: relative;
    width: 100%;
    min-width: 300px;
    max-width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
}
.alert img {
    width: 50%;
    border-radius: 5px;
    margin-top: 20px;
}
.alert h3 {
    margin-top: 30px;
    font-size: 2.0rem;
}
.hidden {
    display: none;
}
.container-button {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 100%;
    text-align: right;
}
.container-button button {
    border: none;
    background: transparent;
    color: #440a67;
    font-size: 4.8rem;
    font-weight: bold;
    outline: none;
    cursor: pointer
}
