@import "../styles.css";

.hollow-circle,
.filled-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    margin: 5px;
}

h2 {
    margin-top: 0rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 24px;
}

h1 {
    font-size: 56px;
    margin-bottom: 0px;
    text-align: center !important;
}

.hollow-circle {
    background-color: transparent;
}

.filled-circle {
    background-color: var(--text-color);
}

.year-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: start;
}

/*mobile devices*/
@media screen and (max-width: 600px) {

    .hollow-circle,
    .filled-circle {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        border: 0.1rem solid var(--text-color);
        margin: 0.25rem;
    }

}