*{
    margin: 0;
    padding: o;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding: 1rem;
}
.main_box{
    width: 1200px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1rem;
    transition: background-color 0.3s ease;
}
.title{
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.75rem;
}
.description{
    margin-top: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}
.copy_write{
    margin-top: 1rem;
    font-size: 1rem;
}
.main_box button{
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    font-size: 1.5rem;
    outline: none;
    border: none;
    border-radius: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
}


/* Media Queries for responsiveness */
@media only screen and (max-width: 1200px) {
    .main_box{
        width: 90%;
    }
}


@media only screen and (max-width: 780px) {
    .main_box{
        width: 100%;
        text-align: center;
    }
    .title {
        font-size: 1.5rem;
        letter-spacing: 0.4rem;
    }

    .description {
        font-size: 1.2rem;
    }

    .main_box button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}