@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&display=swap');

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF0000; /* Red background */
    overflow: hidden; /* Prevent scrollbars from showing */
}

.supreme-box {
    color: white;
    font-family: 'Jost', sans-serif; /* Jost font */
    font-size: 93px;
    text-align: center;
    padding: 20px 40px;
    font-weight: 600; /* Semibold weight */
    font-style: italic; /* Italic style */
    letter-spacing: -3px;
    line-height: 1;
    text-transform: lowercase;
    transition: transform 0.1s ease-out; /* Smooth transition for movement */
}