::selection {
    background-color: rgba(255, 89, 133, 0.5);
}

::-moz-selection {
    background-color: rgba(255, 89, 133, 0.5);
}

body {
    background-color: white;
}

.icon {
    border-radius: 25px;
}

.home_card {
    display: flex;
    height: 95vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
}

.home_card h1 {
    font-size: 60px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .home_card h1 {
        font-size: 50px;
    }
}

.home_card a {
    text-decoration: none;
    color: #0d6efd;
}

.scrollButton {
    scroll-behavior: smooth;
}

.all_card_element {
    display: inline;
    justify-content: center;
    align-items: center;
}

.card_master {
    display: flex;
    min-height: 50px;
    width: 90%;
    margin: 128px auto 128px auto;
}

.card_master button {
    opacity: 0;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-property: opacity;
    -webkit-transition-property: opacity;
}

.card_master:hover button{
    opacity: 1;
}

.mx_card {
    width: 100%;
    color: white;
    border-radius: 75px;
    background-color: #212529;
    box-shadow: 10px 10px 16px 16px #3d3d3d;
    padding: 32px;
}

.card_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_image img {
    max-width: 450px;
    width: 100%;
    border-radius: 25%;
}

.card_element {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.card_element a {
    text-decoration: none;
}

.listen-button{
    border-radius: 15px;
    border: 2px solid white;
    padding: 7px;
    color: white;
}


.disabled{
    cursor: not-allowed;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: #2C2834;
    color: black;
}

footer p {
    margin: 0;
}

.description-content {
    display: flex;
    width: 90%;
    margin: 128px auto 128px auto;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 75px;
    background-color: #212529;
    box-shadow: 10px 10px 16px 16px #3d3d3d;
}

.description-content-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 75px;
    overflow: hidden;
    padding: 32px;
}

/*.description-content-info {*/
/*    filter: brightness(0.5);*/
/*}*/

.title {
    font-size: 50px;
    font-weight: bold;
}

.description {
    color: white;
}
