html{
    height: 100%;
}

body {
    position: relative;

    width: 100%;
    height: 100%;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgb(15, 12, 18);
}

#line{
    padding: 20px 40px 20px 40px;
    background-color: rgb(31, 26, 35);
    border-radius: 100px;
    box-shadow: 0 0 10px black;
    border: none;

    font-family: "Cambria Math";
    font-size: 50px;
    letter-spacing: 0.5px;
    color: rgb(220, 220, 220);

    transition: transform 0.5s;
    z-index: 901;
}

#line:hover{
    transform: scale(1.2);
}

#line > span:first-child{
    color: rgb(255, 117, 22);
}

#line > span:nth-child(2){
    color: rgb(255, 117, 22);
}

#line > span:nth-child(3){
    font-size: 33px;
}

body > div {
    position: absolute;
    background-color: rgb(31, 26, 35);
    border-radius: 40px;
    box-shadow: 0 0 10px black;
}

#rect1{
    width: 200px;
    height: 200px;

    margin-left: -300px;
    margin-bottom: -60px;
    z-index: 801;
}

#rect2{
    width: 100px;
    height: 400px;

    margin-right: -100px;
    margin-top: -60px;
    z-index: 802;
}

#rect3{
    width: 600px;
    height: 300px;

    margin-right: -500px;
    margin-top: -500px;
    z-index: 701;
}

