body {
    background-image: url(my-website/images/background.png);
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin: 60px;
    font-family: Courier New, Lucida Console, Monaco;
    scrollbar-color: aqua navy;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

a {
    color:aqua;
}

html {
    cursor: url(my-website/images/mousedisc.gif), pointer;
}

.photoscontainer {
    background: linear-gradient(to bottom, black 0%, navy 100%);
    color: aliceblue;
    border: aqua 1px solid;
    margin: auto;
    height: 600px;
    width: 900px;
    padding: 20px;
    text-align: left;
    opacity: 95%;
    display: grid;
    grid-template-rows: 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px;
    grid-template-columns: 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px 100px;
    border-radius: 15px;

}

.photostextbox h1, .photostextbox h2, .photostextbox p {
    margin: 30px;
    text-align: center;
}

.photoscontainer ul {
    text-align: left;
}

.photosbox {
    background-image: url(my-website/images/space.gif);
    color: aliceblue;
    border: aqua 1px solid;
    margin: 5px;
    text-align: center;
    opacity: 95%;
    border-radius: 15px;
}

#photosbox1 {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
    padding: 10px;
}

#photosbox2 {
    grid-row: 3 / 7;
    grid-column: 1 / 3;
    padding: 10px;
}

#photosbox3 {
    grid-row: 1 / 7;
    grid-column: 3 / 10;
    padding: 10px;
    
}

.photos-gallery {
    margin: 25px;
    display: flex;
    flex-wrap: wrap;
}

.photos-gallery img {
    width: 210px; 
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s;
    margin: 10px auto;
    display: flex;
    object-fit: scale-down;
    opacity: 100%;
}

.photos-gallery img:hover {
    transform: scale(1.1);
}
