.overlay {

    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    display: grid;
    place-content: center;
}

.overlay::after {

    content: "X";
    color: white;
    background-color: black;
    font-family: sans-serif;
    text-align: center;
    line-height: 2rem;
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: 2px solid white;
    border-radius: 50%;
}

.overlay>figure {
    margin: 0;
    padding: 1rem;
    border: 2px solid white;
    border-radius: 18px;
}

.overlay>figure>img {
    max-width: 100%;
    height: auto;
}

img {
    border-radius: 10px;
}

.image {
    display: block;
    margin: 30px;
}

.container {
    display: flex;
    justify-content: center;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Rubik+Bubbles&display=swap');

body {
    background-color: #DC9170;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

h1 {
    font-family: 'Rubik Bubbles', sans-serif;
    font-size: 3rem;
    color: #231F26;
    text-align: center;
    margin: 0;
    padding: 1rem;
}

ul {
    background-color: #231F26;
    padding: 1rem;
    border-radius: 1rem;

}

a,
span {
    color: #A19FA2;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

li {
    color: #A19FA2;
    list-style-type: none;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}