*{
    padding: 0;
    margin: 0;
}

body{
    background-image: linear-gradient(to bottom right, #BD1616, #F4EBD9, #DD105E);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
}

.container{
    direction: rtl;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 80vh;
}

.section-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    text-align: center;
    padding-bottom: 10px;
}

.grow{
    flex-grow: 1;
}

.text{
    color: #000;
    padding: 10px;
}

.icon-heartbeat{
    font-size: 300px;
    color: #BD1616;
}

.none-heart{
    display: none;
    font-size: 200px;
    padding: 10px;
}

@media screen and (max-width: 900px) {
    .section-container{
        flex-direction: column;
    }
}
@media screen and (max-width: 600px) {
    .icon-heartbeat{
        display: none;
    }
    .none-heart{
        display: block;
    }
}
/***********************************************************/
.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #BD1616;/*ff9e00*/
    border: none;
    color: #fff;
    text-align: center;
    font-size: large;
    padding: 5px;
    width: 130px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 10px;
}
  
.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.button:hover span {
    padding-right: 25px;
}
  
.button:hover span:after {
    opacity: 1;
    right: 0;
}
