.main-page-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-page-content hr {
    width: 100%;
}

.main-page-content p {
    width: 100%;
}

.main-page-content-middle-paragraph {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fffaed;
    border-radius: 1em;
    padding: 30px;
    gap: 30px;
}

.main-page-content-middle-paragraph-image-container {
    height: 150px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-page-content-middle-paragraph-image-container img {
    height: 150px;
}

.main-page-content-final-paragraph {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-game-button {
    display: block;
    font-size: 2em;
    margin-top: 0.5em;
    padding: 0.7em 1.2em;
    border-radius: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6ba6e0;
    color: black;
    text-decoration: none;
}

.play-game-button:hover {
    background-color: #2969a8;
    color: white;
}