* {
    background-color: black;
    margin: 0;
    overflow: hidden;
    color: white;
}

.contain .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main .img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.6s ease-in-out 0s;
}

.main img {
    height: 10rem;
    width: 18rem;
}

.main .button {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    border-radius: 1.2rem;
    border: 1px white solid;
    padding: 0.4rem 0.8rem 0.4rem 0.8rem;
}

.button button:hover {
    background-color: rgba(128, 128, 128, 0.325);
}

.main:has(.button button:hover) .img {
    transform: scale(1.05);
}
