


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-image: url(../images/green_background.jfif);
    background-size: cover;

}


header {
    background-color: darkgoldenrod;
    padding-bottom: 50px;
    width: 200px;
    height: 200px;
 
    border: 5px solid;
    border-style:double;
    border-radius: 100%; 
    box-shadow: 10px 10px 100px 50px rgb(213, 183, 93);
    margin: auto;
    margin-bottom: 50px;
    padding: 20px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-size: 24px;
}


main {
    padding: 50px;
    text-align:center;
    color: rgb(163, 199, 246);
    line-height: 1.5;
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
    text-align: left;
}

p {
    margin-bottom: 20px;
}


.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 50px;
    margin-top: 80px;
    margin-bottom: 50px;
    padding: 0 50px;
    justify-items: center;
    
   
}

.photo {
    border: 4px solid rgb(59, 32, 1);
    border-radius: 10%; 
    overflow: hidden; 
    box-shadow: 4px 4px 20px 1px rgb(213, 183, 93);
    transition: transform 1s ease-in-out;
    cursor: pointer;
    position:relative;
    margin-bottom: 20px;
    display: flex;
    
}

.photo img {
    width: 100%; 
    height: 100%; 
    display:flexbox; 
    object-fit: cover; 
   
    transition: transform 0.8s ease-in-out;
}

.photo img:hover {
    transform: scale(1.2); 
}
