div.mainPage {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.calcBody {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin: auto;
}
.calcWebsite {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin: auto;
}

div.calculator {	
    display: flex;
    border: solid 1px #000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 700px;
}

div.calcItem {
    border: solid 1px black;
    margin: auto;
}

/* Hintergrundfarbe */
body {
    background-color: #f3f383;
    font-family: sans-serif; /* Schriftart */
    text-align: left; /* Text zentrieren */;
    
}

/* Überschrift */
h1 {
    color: rgb(60, 180, 220); /* Grün */
    font-size: 2.9em; /* Größerer Text */
}

/* Absatz */
p {
    color: #333; /* Dunkelgrau */
    font-size: 1.2em; /* Etwas größer */
}

/* Bild */
img {
    width: 300px; /* Bildgröße breite auf 300px */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Schatten */
    display: block;
}

/* Link */
a {
    color: #007bff; /* Blau */
    text-decoration: none; /* Keine Unterstreichung */
    font-weight: bold; /* Fett */
}

a:hover {
    text-decoration: underline; /* Unterstreichung bei Hover */
    color: #c101b9;
}

button {
    margin-left: 4px;
    margin-right: 4px;
}

.subscribe-button {
    background-color: rgb(200, 0, 0);
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    
    transition: opacity 0.15s;

    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 17px;
    padding-right: 17px;
}

.subscribe-button:hover {
    opacity: 0.8;
}

.subscribe-button:active {
    opacity: 0.5;
}

.join-button {
    background-color: rgb(255, 255, 255);
    color: rgb(41, 118, 211);;
    border-color: rgb(41, 118, 211);
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    cursor: pointer;
    
    transition: background-color 0.15s, color 0.15s;

    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
}

.join-button:hover {
    background-color: rgb(41, 118, 211);
    color: rgb(255, 255, 255);
}

.join-button:active {
    opacity: 0.7;
}

.tweet-button {
    background-color: rgb(200, 158, 255);
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 18px;
    cursor: pointer;

    transition: box-shadow 0.15s;

    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 17px;
    padding-right: 17px;
}

.tweet-button:hover {
    box-shadow: 5px 2px 10px rgba(0, 0, 0, 0.25);
}

.website-slogan {
    font-family: Arial;
    font-size: 25px;
    font-weight: bold;
    color: rgb(150, 0, 50);

}

.apple-promo {
    margin-top: 100px;
    background-color: rgb(227, 65, 64);
    color: white;
    font-size: 14px;
    text-align: center;
    
    padding-top: 18px;
    padding-bottom: 18px;
}

.challenge-5f {
    color: rgb(100, 100, 100);
    font-size: 18px;
    font-weight: bold;

    margin-top: 8px;
    margin-bottom: 8px;

    text-align: bottom;
}

.f1 {
    color: rgb(0, 0, 0);
    font-size: 28px;
}

.f2 {
    color: rgb(4, 133, 0);
}

.f3 {
    color: rgb(200, 10, 10);
}

.searchbar {
    font-size: 20px;
    border-radius: 10px;
    border-width: 1px;
    border-color: rgb(10, 10, 10);
    border-style: solid;
    padding-left: 15px;
}

.image-author,
.image-stats {
    display: inline-block;
}

.mini_shop_link {
    color: rgb(200, 0, 100);
    font-weight: bold;
    font-size: 30px;

    padding-bottom: 10px;
    display: block;
}