*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
    font-family: 'Open Sans', sans-serif;
}
p ,span {
    color: white;
}
header{
    height: 50px;
    width: 100%;
    color: black;
    display: flex;
    .header__previous{
        flex: 1;
        display: flex;
        padding-inline-start: 20px;
        svg{
            height: 50px;
        }
        .header__subtitle{
            font-size: 18px;
            padding-block-start:10px;
            padding-inline-start: 10px;
        }
    }
    .header__title{
        flex: 1;
        font-size: 25px;
        padding-block-start:10px;

    }

}
main { 
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;
}

.frame {
    width: 400px;
    height: 400px;
    background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
}
.content    {
    display: grid;
    width: 100%;
    height: 100%;
    place-content: center;
}
.number {
    width: 200PX;
    height: 100PX;
    position: relative;
}
.one-one{
    background-color: white;
    height: 100px;
    width: 25px;
    z-index: 2;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 13px 0 rgba(0,0,0,0.2);
    
}
.one-two{
    background-color: white;
    height: 25px;
    width: 50px;
    position: absolute;
    rotate: 143deg;
    left:-34px;
    top: 12px;
    border-radius: 5px;
    transform: translate();
    z-index: 0;
    box-shadow: 0 0 13px 0 rgba(0,0,0,0.2);
}
.zero-one{
    height: 100px;
    width: 100px;
    border-radius: 50px;
    border: 25px solid white ;
    position: absolute;
    top: 0px;
    left: 20px;
    z-index: 1;
    box-shadow: 0 0 13px 0 rgba(0,0,0,0.2);
}
.zero-two{
    height: 100px;
    width: 100px;
    border-radius: 50px;
    border: 25px solid white ;
    position: absolute;
    top: 0px;
    left: 110px;
    z-index: 0;
    box-shadow: 0 0 13px 0 rgba(0,0,0,0.2);
}
.content-text {
    display: flex;
    flex-direction: column;

}
.content-text__big {
    font-size: 82px;
    line-height: 0px;
    margin: 30px 0 40px 0;
}
.content-text-small {
    font-size: 23px;
    line-height: 20px;
    letter-spacing: 2px;
}
