@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    background:linear-gradient(180deg, rgb(0 0 0 / 0.3), rgb(0 0 0 / 1)), url(../assets/underC.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Montserrat", sans-serif;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height:100dvh;
    h1{
        font-size: clamp(2rem, 8vw, 8rem);
        text-align: center;
        line-height: 1;
        letter-spacing: -1px;
        text-shadow: 2px 2px 10px #000000;
        text-transform: capitalize;
        padding-inline: 2rem;
        margin-block-end: 1.5rem;
    }
    p{
        font-size: clamp(1rem, 2vw, 2rem);
        font-weight: 500;
        text-align: center;
        text-shadow: 1px 1px 3px #000000;
        max-width: 75ch;
        width: 100%;
        padding-inline: 2rem;
    }
}