.main-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 16px;
}

.main-page-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.main-page-header-config {
    margin-right: 16px;
}

.main-page-difficult {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.main-page-difficult-button {
    font-family: "Sour Gummy", serif;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 16px;
    font-size: 32px;
    font-weight: 600;
    border-radius: 8px;
    width: 200px;
    background-color: #aaa;
    color: #555;
    text-align: center;
}

.main-page-difficult-button-unselected {
    cursor: pointer;
}

.main-page-difficult-button-unselected:hover {
    font-weight: 800;
    box-shadow: 5px 10px 10px 0px rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.1);
    transition: all 0.3s ease;
}

.main-page-difficult-button-unselected:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 2px 5px 5px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.main-page-difficult-button-selected {
    background-color: #ffd902;
    color: #75050a;
}

.main-page-round-buttom {
    color: white;
    font-size: 40px;
    background-color: #75050a;
    margin-left: 32px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 50%;
}

.main-page-round-buttom:hover {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    transform: scale(1.1);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
}

.main-page-people {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 32px;
}

.main-page-people-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.main-page-empty-star {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    background-color: #DDDDDD;
    width: 296px;
    height: 448px;
}

.main-page-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.star-image {
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    background-color: #DDDDDD;
    width: auto;
    max-height: 100%;
}

.star-name {
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: 500;
}

.empty-star {
    color: #75050a;
    font-size: 3em;
}

.empty-star-animate {
    animation: star-spin 1s infinite linear;
}

@keyframes star-spin {
    0% {
        transform: scale(1.0) rotate(0deg);
    }
    50% {
        transform: scale(2.0) rotate(180deg);
    }
    100% {
        transform: scale(1.0) rotate(360deg);
    }
}

.version {
    position: fixed;
    bottom: 4px;
    color: white;
    font-size: 8px;
}