@font-face {
	font-family: 'Trajan Pro Bold';
	font-style: normal;
	font-weight: normal;
	src: local('Trajan Pro Bold'), url('TrajanPro-Bold.woff') format('woff');
}

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Trajan Pro Bold';                     
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#timer {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ffffff86, 0 0 20px #ffffff86, 0 0 30px #c83f49;
    min-height: 80px;
}

#steamButton {
    background-color: #c83f49;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-family: 'Trajan Pro Bold';   
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#steamButton:hover {
    background-color: #e04a56;
    transform: scale(1.05);
}