.rb-container {
    text-align: center;
}

.rb-container-home {
    text-align: -webkit-center;
    width: 100%;
}

.rb-button-blue {
    text-align: center;
    width: 200px;
    height: 60px;
    border: 1px solid #0087ff;
    color: white;
    font-size: 2rem;
    background-color: rgba(0, 135, 255, 0.2);
    border-radius: 4px;
    transition: 250ms ease-in-out;
}
.rb-button-blue:hover {
    cursor: pointer;
    background-color: rgba(0, 135, 255, 0.6);
}

.rb-button-christmas {
    text-align: center;
    width: 55px;
    height: 55px;
    border: none;
    font-size: 2rem;
    background-color: transparent;
    border-radius: 10px;
    opacity: 50%;
    transition: 250ms ease-in-out;
}
.rb-button-christmas:hover {
    cursor: pointer;
    opacity: 75%;
}
.rb-button-birthday {
    text-align: center;
    width: 55px;
    height: 55px;
    border: none;
    font-size: 2rem;
    background-color: transparent;
    border-radius: 10px;
    opacity: 50%;
    transition: 250ms ease-in-out;
}
.rb-button-birthday:hover {
    cursor: pointer;
    opacity: 75%;
}

.rb-search-form-button {
    text-align: center;
    width: 60px;
    height: 58px;
    border: 1px solid #0087ff;
    color: white;
    font-size: 2rem;
    background-color: rgba(0, 135, 255, 0.2);
    border-radius: 50px;
    transition: 500ms ease-in-out;
    vertical-align: -6px;
    margin-left: -64;
}
.rb-search-form-button:hover {
    cursor: pointer;
    background-color: rgba(0, 135, 255, 0.6);
}

.rb-button-elegant {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    width: 250px;
    height: 50px;
    padding: 10px;
    border: 0.5px solid white;
    background-color: transparent;
    color: white;
    border-radius: 5px;
    transition: 250ms ease-in-out;
    font-size: 20px;
}
.rb-button-elegant:hover {
    cursor: pointer;
    border-color: #0087ff;
}


@media (hover: none) {
    .rb-button-elegant {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 1000px) and (hover) {
    .rb-button-elegant-margin {
        margin-right: 7%;
    }
}