*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #1d1d1d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.door {
    position: relative;
    width: 200px;
    height: 250px;
    background-color: #f4a43b;
    border-radius: 100px 100px 20px 20px;
    overflow: hidden;
}

.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #fff48c;
    border-radius: 50%;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.left__circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #e27f2d;
    border-radius: 50%;
    bottom: -20px;
    left: -30px;
}

.right__circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #854d23;
    border-radius: 50%;
    bottom: -20px;
    right: -30px;
}
