* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
}

div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hide {
    display: none;
}

h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}