@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Kode Mono", monospace;
}
span, a, label {
    display: inline-block;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.black {
    min-height: 100dvh;
    background-color: #F78D60;
    padding: 50px 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.white {
    width: 1200px;
    background-color: #0D1164;
    padding: 50px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.box {
    border-radius: 13px;
    position: relative;
    overflow: hidden;
}
.box::before, .box::after {
    content: '';
    position: absolute;
    width: 75%;
    height: 120%;
    right: 0;
    background-color: #ea2265de;
    box-shadow: -32px 0 #ea226572;
}
.box::before {
    top: 0;
    transform: translateX(50%) translateY(-50%) rotate(-30deg);
    z-index: 2;
}
.box::after {
    bottom: 0;
    transform: translateX(50%) translateY(50%) rotate(30deg);
    z-index: 1;
}
.image {
    width: 400px;
    position: relative;
}