@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
:root{
    --Gradient-left: hsl(6, 100%, 80%);
    --Gradient-right: hsl(335, 100%, 65%);
--Pale-Blue: hsl(243, 100%, 93%);
--Grayish-Blue: hsl(229, 7%, 55%);
--Dark-Blue: hsl(228, 56%, 26%);
--Very-Dark-Blue: hsl(229, 57%, 11%);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}
/* body{
    background-color: var(--Very-Dark-Blue);
} */
main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--Very-Dark-Blue);
    background-image: url(./images/bg-desktop.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100vw 50vh;
}
.container{
    height: 30vh;
    width: 60vw;
    /* border: 2px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.left{
    height: 25vh;
    width: 20vw;
    /* border: 2px solid red; */
    margin: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    border-radius: 10px 80px 10px 10px;
    background-color: var(--Dark-Blue);
}
.left .top{
    height: auto;
    width: auto;
    /* border: 2px solid orange; */
    margin: .8rem 0rem;
    /* position: absolute; */
    top: 10px;
}
.left .bottom{
    /* border: 2px solid red; */
    margin: 1rem 0rem;
    /* position: absolute; */
    bottom: 10px;
    display: flex;
    /* flex-direction: ; */
    /* background-color: var(--Grayish-Blue); */
}
.left .bottom .imgbox{
    height: 2.5rem;
    width: 2.5rem;
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid aqua; */
    margin-right: 1rem;
    background-color: var(--Very-Dark-Blue);
    border-radius: 5px;
}
.left .bottom img{
    height: 1.2rem;
    width: 1.2;
}
.right{
    height: 25vh;
    width: 30vw;
    /* border: 2px solid aqua; */
    margin: 1rem;
    position: relative;
    /* border-radius: 10px; */
}
.right .big{
    width: 30vw;
    height: 20vh;
    position: absolute;
    background-color: var(--Dark-Blue);
    /* left: 50%; */
    bottom: 0px;
    /* transform: translateX(-50%); */
    border: 2px solid grey;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    color: var(--Pale-Blue);
    border-radius: 10px;
}
p{
    font-size: 15px;
}
.right .big span{
    font-weight: 700;
}
.right .big .progressbar{
    width: auto;
    height: 1.1rem;
    /* border: 2px solid red; */
    background-color: var(--Very-Dark-Blue);
    margin: 1rem 0rem .5rem 0rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.progressbar .p_barGradient{
    height: .8rem;
    width: 80%;
    margin: .2rem;
    background-image: linear-gradient(to right, hsl(6, 100%, 80%) , hsl(335, 100%, 65%));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: right;
}
.p_barGradient .circle{
    height: .6rem;
    width: .6rem;
    background-color: var(--Pale-Blue);
    margin: .1rem;
    border-radius: 5px;

}
.right .big .bottom{
    display: flex;
    justify-content: space-between;

}
.right .big .bottom p{
    font-size: 12px;
    font-weight: 700;
}
.right .small{
    width: 10vw;
    height: 12vh;
    /* border: 2px solid yellow; */
    position: absolute;
    right: 2rem;
    overflow: hidden;
}
.right .small .rectangle{
    height: 70%;
    width: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.right .small .rectangle .leftbox{
    font-size: xx-large;
    font-weight: 700;
    color: var(--Dark-Blue);
}
.right .small .rectangle .rightbox{
    font-size: 12px;
    font-weight: 700;
    color: var(--Grayish-Blue);
    margin: .5rem 0 0 .5rem;
    z-index: 1;
}
.right .small .triangle{
    height: 45px;
    width: 45px;
    background-color: white;
    position: absolute;
    right: -25px;
    bottom: 15px;
    rotate:45deg;
}
.attribution { 
    position: absolute;
    bottom: 0px;
    font-size: 11px; text-align: center;
color: var(--Pale-Blue); }
.attribution a { color: hsl(228, 22%, 46%); }


