/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general page setup */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

/* Header and logo styles */
header {
    padding: 20px;
    margin-bottom: 50px;
}

.logo {
    display: inline-block;
    text-align: left;
}

.logo-text {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 16px;
    color: #aaa;
    margin-top: 5px;
}

/* Content section with shapes */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 200px;
}

.box {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #fff;
}

.chart-container {
    position: relative;
    width: 120px;
    height: 100px;
    border: 2px solid red;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line {
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #fff;
}

/* Default bar style */
.bar {
    position: absolute;
    width: 4px;
    background-color: #fff;
    bottom: 50%;
    transform: translateY(50%);
}
.circle {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
}
