body {
    margin: 0;
    padding: 0;
}

.main-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 2rem;
}

.main-container img {
    width: 80vw;
    max-width: 500px;
    height: auto;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .divider {
        margin-left: 3vw;
    }
}

.divider-tags {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-left: 7vh;
}

.divider-tags a {
    color: black;
    text-decoration: none;
    transition:
        color 0.1s,
        background-color 0.1s;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    font-weight: normal;
    background-color: rgba(167, 167, 167, 0.497);
    padding: 0 3px;
}

.divider-tags a:hover {
    color: #fff200;
    background-color: black;
}

.divider {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
