* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Avenir, sans-serif;
    font-size: 16px;
}

.body {
    background-color: #1c1d1d;
    color: #eaeaea;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section__text {
    font-size: 0.9rem;
    text-align: center;
    color: #565656;
    margin-top: 6px;
}

.content-page {
    max-width: 1160px;
    margin: 32px auto 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.panel-question__wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-radius: 15px;
}

.panel-question__theme {
    background: #169890;
    padding: 12px 0;
    width: 100%;
    text-align: center;
}

.panel-question__theme:hover {
    background: #027670;
    cursor: pointer;
}

.dropdown-wrap {
    position: relative;
    display: inline-block;

    padding: 12px 0;
    width: 100%;
    text-align: center;
}

.dropdown__content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 10px 10px 10px #1c1d1d;
    z-index: 1;
}

.dropdown__string {
    color: #383939;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #d2d2d2;
}

.dropdown-wrap:hover .dropdown__content {
    display: block;
}

.section__start {
    padding: 36px 0 0;
    border: 1px solid #383939;
    border-radius: 10px;
    background-color: #222323;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.start__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.result__title {
    font-size: 3rem;
    align-items: center;
}

.result__description {
    font-size: 1rem;
    font-weight: lighter;
}

.content-page__link {
    text-decoration: none;
    color: #eaeaea;
}

.player-image-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.player-image {
    width: 110px;
    height: 160px;
    object-fit: cover;
    object-position: center center;
}