@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

body {
    background: black;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.player {
    text-align: center;
}

img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}

.timestamp {
    font-size: 18px;
    margin-bottom: 10px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.controls button {
    background: #222;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.controls button:hover {
    background: #444;
}
