
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    background-color: #ffcccb;
    font-family: Brush Script MT;
}


body {
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center;
    margin: 0;
    padding: 20px;
}


.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 85px;
    color: #696969;
    margin-bottom: 50px;
    padding-top: 20px;
    font-family: 'Playfair Display', serif;
}

.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}