/*

DESIGNED MOBILE FIRST

*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
}


body {
    display: flex;
    background: linear-gradient(to right, rgb(120, 120, 228), rgb(37, 85, 197));
    justify-content: center;
    align-items: center;
    min-height: 100%;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;

}

.container {
    text-align: center;
}

.container__heading {
    color: #F9F9ED;
    text-transform: uppercase;
    font-size: 45px;
    padding-bottom: 0.75rem;
}

.container__info--muted {
    color: rgb(53, 53, 53);
    font-size: 25px;
    padding-bottom: 1.25rem;
}

.btn {
    padding: 1rem 3rem;
    border: 1px solid #5158BB;
    background: linear-gradient(to left, white 50%, #5158BB 50%);
    background-size: 250%;
    color: white;
    outline: none;
    font-size: 15px;
    border-radius: 8px;
    letter-spacing: 2px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
    transition: all .2s ease-in-out;
}

.btn:hover {
    padding: 1rem 4rem;
    cursor: pointer;
    background-position: right;
    color: #5158BB;
    transition: all .2s ease-in-out;
}

.btn_1 {
    padding: 1em 2em;
    border: 1px solid #5158BB;
    background: linear-gradient(to left, white 50%, #FFFFFF 50%);
    background-size: 250%;
    color: white;
    outline: none;
    font-size: 15px;
    border-radius: 8px;
    letter-spacing: 2px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
    transition: all .2s ease-in-out;
}
/*
.btn_1:hover {
    padding: 1rem 4rem;
    cursor: pointer;
    background-position: right;
    color: #5158BB;
    transition: all .2s ease-in-out;
}
*/
@media(min-width: 640px) {
    body {
        background: url("../img/farbverlauf-hintergrund-hellblau.png") no-repeat center / cover border-box;
    }
}