body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    container-type: inline-size;

    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-color: rgb(236, 62, 39);
    border-radius: 2rem;
    
    width: clamp(250px, 30vw, 20em);
    height: clamp(450px, 75vh, 40em);
    padding: clamp(1rem, 5cqw, 2rem);

    overflow: hidden;
}

h2 {
    font-size: 14cqw;
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    color: white;
    margin: 1rem;
}


.image{
    height: 40%;
    width: 100%;

    display: flex;
    justify-content: center;
}

image img {
    height: 100%;
    object-fit: contain;
}


.infos{
    display: flex;
    flex-direction: column;
    align-items: center;

    width: clamp(150px, 20vw, 20em);
}

.txt {
    background-color: white;
    border-radius: 10% / 25%;
    border: solid 0.05rem black;

    width: 100%;
    height: clamp(50px, 10vh, 20rem);
    margin-top: 1.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0%;
    font-size: 300%;
    font-family: 'Poppins';

    box-shadow: 0 0.15em 0 rgba(0,0,0,0.25);

}

.ctrls{
    display: flex;
    justify-content: space-between;
    gap: 1cqw;
    width: 100%;
    margin-top: 1em;
}

button:not(.pushable) {
    flex: 1;
    border-radius: 10% / 20%;
    border: solid 0.05em;
    background-color: white;
    padding: 0.4em 0;
    font-size: clamp(0.9rem, 3cqw, 1.2rem);
    cursor: pointer;
    font-family: 'Poppins';
    font-weight: 600;
}

button {
    transition: all 0.30s ease;
    box-shadow: 0 0.4em 0 rgba(0,0,0,0.25);
}

button:hover {
    transform: translateY(-0.1em);
    box-shadow: 0 0.5em 0 rgba(0,0,0,0.25);
}

button:active {
    transform: translateY(0.25em);
    box-shadow: 0 0.15em 0 rgba(0,0,0,0.25);
}
