body {
    background-color: black;
}

.mainContainer {
    max-width: 1400px;
    margin: 0 auto;
}

.menuContainer {
    display: flex;
    justify-content: space-between;
}

.menu {

}

h2{
    color: yellow;
}

.menuItem {

}

.button {
    width: 100px;
    padding: 8px 16px 8px;
    border-radius: 20px;
    background-color: yellow;
}

.anchor {
    text-decoration: none;
    color: white;
    margin-right: 20px;
}

.anchor:hover {
    border-bottom-style: solid;
}

.firstContainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 100px;
}

.left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best {
    font-size: 50px;
    color: white;
    margin: 10px;
}

.lorem {
    color: white;
}

.play {
    width: 150px;
    padding: 8px 16px 8px;
    border-radius: 20px;
    background-color: yellow;
    margin-top: 10px;
}

.right {
    width: 50%;
    margin-top: 20px;
}

.inneright {
    text-align: center;
 margin-top: 20px;
}

.img {
    border-radius: 50%;
    border: yellow;
    width: 50%;
}

.image:hover {
    cursor: pointer;
}

@media (max-width: 767px) {
    .left {
        width: 100%;
    }

    .innerleft {
        margin: 0 auto;
    }

    .right {
        width: 100%;
    }

    .inneright {
        margin: 0 auto;
    }
}