body{
    background-color: black;
}
.text{
    color: aliceblue;
    font-size: 43px;
}

.position{
    position: absolute;
    left: 50%;
    right: 50px;
    bottom: 100px;
    position: fixed;
}

.position__block{   
    background-color: aliceblue;
    width: 50% - 50px ;
    min-height: 100px;
    border-radius: 5px;
}

.position__circle{
    background-color: red;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    bottom: 50px;
    left: 100px;

}