@font-face {
    font-family: "Jersey15";
    src: url("Jersey15-Regular.ttf") format("truetype");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #000;
    color: #fff;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.content {
    position: relative;      
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    position: absolute;
    bottom: 100%;               
    left: 50%;
    transform: translateX(-50%); 
    width: 180px;
    height: auto;
    margin-bottom: 25px;        
}
h1 {
    font-family: "Jersey15", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: normal;
    letter-spacing: 2px;
    text-align: center;
}
