* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    background-image: url('assets/img/pug.ac/background.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile {
    text-align: center;
    background: rgba(50, 50, 50, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: rgb(255, 255, 255);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgb(102, 102, 102);
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.viewers-box {
    margin-top: 20px;
    background: rgba(50, 50, 50, 0.1);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1.2em;
    text-align: center;
}

.viewers-box #viewers-count {
    font-size: 2em;
    margin-top: 10px;
}

.last-updated {
    font-size: 0.8em;
    opacity: 0.6;
    margin-top: 10px;
}

.request-image {
    display: block;
    margin: 10px auto;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
