﻿html {
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background: rgb(116,255,153);
    background: linear-gradient(245deg, rgba(116,255,153,1) 0%, rgba(73,171,254,1) 82%);
}

body {

    margin: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

body > div{
    font-size: 100px;
    font-family: 'Arial Rounded MT';

    border-radius: 100px;
    background-color: white;

    padding: 10px 60px 20px 60px;

    box-shadow: 0 0 7px 2px rgb(70, 70, 70);
}

.schaefer{
    color: orange;
}

.minus{
    margin: 0 10px 0 10px;
}

.preis{
    color: cornflowerblue;
}

.de{
    font-size: 65px;
}

* {
    user-select: none;
}