﻿





.mybutton {
    display: inline-block;
    width: 205px;
    padding: 10px 15px;
    margin-right: 10px;
    text-decoration: none;
    color: #000;
    background-color: #eee;
    border-radius: 8px;
    box-shadow: 5px 5px 5px #808080;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .mybutton:hover {
        transform: translateY(-3px);
        box-shadow: 5px 5px 5px #808080;
    }

    .mybutton img {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
    }

    .mybutton .title {
        margin: 0px;
        margin-top: 10px;
        margin-left: 3px;
        margin-bottom: 0px;
        line-height: 1;
        text-align: center;
        font-weight: 600;
        font-size: 19px;
        font-family: Calibri;
        color: #373636;
    }

    .mybutton .subtitle {
        margin: 0px;
        margin-left: 3px;
        margin-top: 4px;
        line-height: 1;
        text-align: center;
        font-weight: 100;
        font-size: 17px;
        font-family: Calibri;
        color: black;
    }

    /* Farben */
    .mybutton.yellow {
        background-color: #fece32;
    }

    .mybutton.blue {
        background-color: #cde4ff;
    }

    .mybutton.green {
        background-color: #d4f8d4;
    }

/* Responsive */
@media (max-width: 800px) {
    .mybutton {
        width: 100%;
        margin-bottom: 15px;
    }
}
