.iphone-container {
    perspective: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.iphone {
    width: 250px;
    height: 500px;
    background-color: black;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.coque {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 30px;
}

.petit-ecran {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 25%;
    background-color: #333;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.petit-ecran img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

input[type="file"] {
    margin-top: 20px;
}
