﻿.iphone {
    width: 375px;
    height: 812px;
    background-color: #fff;
    border-radius: 40px;
    border: 8px solid black;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.iphone-half {
    width: 100%;
    background: #fff !important;
    max-width: 363px;
    aspect-ratio: 16 / 18;
    border-radius: 40px 40px 0 0;
    border-top: 8px solid black;
    border-right: 8px solid black;
    border-left: 8px solid black;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.notch {
    width: 210px;
    height: 30px;
    background-color: #000;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    z-index: 2;
}

.camera {
    width: 8px;
    height: 8px;
    background-color: #666;
    border-radius: 50%;
}

.speaker {
    width: 60px;
    height: 6px;
    background-color: #333;
    border-radius: 3px;
}

.screen {
    text-align: center;
}