body {
    margin: 0;
    background-color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: top;
    height: 100dvh;
}

.iphone-frame {
    width: 393px;
    height: 100%;
    background-color: white;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.corner-btn {
    position: absolute;
    top: 60px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1100;
    transition: 0.2s ease;
}

#lockin-btn {
    right: 20px;
}

#lockin-btn:hover {
    transform: scale(1.04);
}

.corner-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none;
}

.app-icon {
    display: block;           /* Bild als Blockelement */
    margin: 200px auto 0;     /* 100px von oben, zentriert */
    border-radius: 35px;
    width: 150px;             /* Beispielbreite */
    height: auto;
}

.coming-soon {
    margin: 20px auto 0;      /* Abstand nach oben und zentriert */
    font-size: 35px;
    font-weight: bold;
    color: #250036;
    text-align: center;       /* Textinhalt zentriert */
    width: fit-content;       /* Breite auf Text anpassen */
}
    
.applestore-box {
    margin: 100px auto 0px;        /* Abstand und zentriert */
    width: 152px;
    height: 45px;
    background-image: url('img/appstore.png'); /* PNG-Datei hier einfügen */
    background-size: cover;
    background-position: center;
}

.playstore-box {
    margin: 10px auto;        /* Abstand und zentriert */
    width: 152px;
    height: 45px;
    background-image: url('img/playstore.png'); /* PNG-Datei hier einfügen */
    background-size: cover;
    background-position: center;
}