body{
    background-color: black;
}
h1{
    color: white;
    text-align: center;
}
div{
    height: 700px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
img {
    height: 450px;
    width: 100px;
    border: 2px solid white;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.5s ease;
}
img:hover {
    border: 2px solid goldenrod;
    transform: scale(1.1);
    width: 220px;
}
