body {
    background-color: #343434;
    margin: 0;
    padding: 0;
}

.wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text {
    color: lightgray;
    font-family: monospace;
    font-size: extra-large;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .text {
        
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .text {
        
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .text {
        
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .text {
        
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .text {
       
    }
}

