* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#title {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#title h1 {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    color: white;
    font-weight: 800;
    font-size: 3em;
    letter-spacing: -2px;
}

#title p {
    font-size: 1.2em;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
    color: white;
    font-weight: 100;
}

body {
    background: #FF5410;
    /* background: linear-gradient(121deg, rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);   */
    overflow-x: auto;  
}

@media (max-width: 500px) {
    #title h1 {
        font-size: 2em;
    }
    #title p {
        font-size: 0.8rem;
    }
}