body {
    background: #2d2d2d;
}

.text {
    color: #fff;
    font-size: 32px;
    line-height: 30px;
}

.wrapper {
    height: 100vh;
}

.inner {
    display: flex;
    height: 100%;
}

.rectangle {
    background: #fff;
    width: 50%;
    height: 100px;
    border-radius: 15px;
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 50px;
    margin-bottom: 100px;
}

.circle {
    background: #ef1919;
    height: 100px;
    width: 100px;
    border-radius: 90%;
    position: relative;
    left: 50px;
    bottom: 50px;
}

