* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {    
    background-color: white;
    font-family: "Poppins", sans-serif;
    max-height: 100svh;                       
}

.marbleContainer {
    margin: 1.5rem;
    border-radius: 40px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("ChatGPT-Image-May-29-2025.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100svh - 3rem);
    padding: 1.5rem;
}
h1,h2,h3 {
    color: white;
    text-align: center;  
}

h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
}

h2 {
    font-size: 3rem;
    font-weight: 200;    
}
h3 {
    max-width: 100%;
    margin-top: 5rem;
    line-height: 1.6;
    font-weight: 400;
    overflow-wrap: break-word;
}

@media only screen and (min-width: 768px) {
    h1 {
        line-height: initial;
    }
    h2 {
        margin-top: -1rem;
    }
    h3 {
        max-width: 60ch;
    }
}