
/* BUTTON1 */

.button {
    background-color: none; 
    border: 1px solid #0053b1;
    border-radius: 30px;
    color: #0053b1;
    padding: 10px 60px;
    text-align: center;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
  }

a.button {
    transition: all 0.5s;
}

a.button:hover {
    background-color: #6100b1;
    padding: 10px 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.0);
}



/* BUTTON 2 TELEFON */

.button2 {
    background-color: #0057fa; 
    border-radius: 100px;
    color: #ffffff;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    font-weight: 800;
    font-size: 18px;
    width: 100px;
    height: 100px;
    margin: 0px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    background-image: url('../tel.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80px;
}

a.button2 {
    transition: all 500ms;
}

a.button2:hover {
    background-color: #4898ff;
    padding: 30px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

/* BUTTON 3 EMAIL */

.button3 {
    background-color: #0057fa; 
    border-radius: 100px;
    color: #ffffff;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    font-weight: 800;
    font-size: 18px;
    width: 100px;
    height: 100px;
    margin: 0px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    background-image: url('../mail.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80px;
}

a.button3 {
    transition: all 500ms;
}

a.button3:hover {
    background-color: #4898ff;
    padding: 30px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}