h1 {
    color: white;
    text-align: center;
}

img {
    object-fit: contain;
    max-width: 300px;
    max-height: 300px;
}

.main {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: black;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

@media(max-width: 1000px) {
    img {
        width: 300px;
        height: 300px;
    }
}

@media(max-width: 300px) {
    img {
        width: 200px;
        height: 200px;
    }
}