@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}



.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
    color: whitesmoke;
}

.title {
    font-size: 2.25rem;
    font-family: "Limelight", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.subtitle {
    font-size: 1.2rem;
    font-family: "Limelight", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(173, 101, 6);
}

h5 {
    text-align: center;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.paragraph {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    padding: 10px;
    text-align: left;
}

@media screen and (max-width: 600px) {


    .container {
        background-color: #f0f0f0;
        color: black;
    }

    h1.title {
        font-size: 1.125rem;
    }

    .subtitle {
        font-size: 0.800rem;
    }




}