* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  height: 100vh;
  overflow: hidden;
}

body {
    font-family: 'Trajan Pro', 'Georgia', 'Times New Roman', serif;
    background: #000000;
    color: #FFFFFF;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    font-family: 'Trajan Pro', 'Georgia', 'Times New Roman', serif;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0;
    line-height: 1;
    padding: 0;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0;
}

.uptime-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.uptime-btn:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 480px) {
    .uptime-btn {
        padding: 10px 24px;
        font-size: 1rem;
    }
}
