* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffe494;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #FDD835; 
    color: #333;
}
header h1 {
    margin: 0;
}
header button {
    background-color: transparent;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
}
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background-color: #FFF3CD; 
}
.image-circle {
    width: 600px; 
    height: 600px; 
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 5px solid #333; 
}
.image-circle img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.image-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.image-circle:hover::before {
    opacity: 1;
}
.image-circle span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.image-circle:hover span {
    transform: translateY(0);
}

*{
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fffea7;
}

.image-circle {
    width: 600px; 
    height: 600px; 
    aspect-ratio: 1 / 1; 
    border-radius: 50%; 
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 5px solid #333; 
}

.image-circle::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); 
    opacity: 0; 
    transition: opacity 0.3s ease-in-out; 
}
