*{
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    background-color: #3fb5e7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roll{
    position: relative
}

.roll_body{
    width: 200px;
    height: 200px;
    background-color: #fefefe;
    border-radius: 0 40px 40px 0/0 50% 50% 0;
}

.roll_side{
    position: absolute;
    top: 0;
    left: -40px;
    bottom: 0;
    width: 80px;
    background-color: #f2fcfe;
    border-radius: 50%;
}

.roll_side_hole{
    position: absolute;
    width: 30px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background-color: #b6e5f9;
}

.roll_face{
    position: absolute;
    width: 160px;
    height: 160px;
    top: 40%;
    right: 1px;
    background-color: #fefefe;
    border-radius: 0 0 5px 5px;
    border-top: 2px dashed #dff8fd;
    overflow: hidden;
}

.roll_face::after{
    content: " ";
    position: absolute;
    height: 40px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    background-color: #f2fcfe;
    transform: rotate(-8deg);
}