body{
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 400;
    background-image: url(../images/bg-mobile.png);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: block;
}

h1{
    font-family: 'Raleway' sans-serif;
    font-weight: 700;
}

.con-one{
    background-color: hsl(228, 56%, 26%);
    padding: 30px;
    width: 80%;
    margin: 0 auto;
    line-height: 3em;
    border-top-left-radius: 5px;
    border-top-right-radius: 70px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 20px;
}

.con-one .logo{
    width: 55%;
}

.sub-con-one{
    display: flex;
    gap: 10px;
    justify-content: start;
}

.sub-con-one i{
    background-color: hsl(229, 57%, 11%);
    width: 20%;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con-two{
    background-color:hsl(228, 56%, 26%);
    color: hsl(243, 100%, 93%);
    padding: 30px;
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
}

.con-two p{
    width: 100%;
}

.con-two .progress{
    background-color: hsl(229, 57%, 11%);
    width: 100%;
    border-radius: 20px;
    padding: 2px;
    opacity: 0.7;
}

div .progress-bar{
    background: linear-gradient(to right, hsl(6, 100%, 80%),
    hsl(335, 100%, 65%));
    border-radius: 20px;
    width: 70%;
}

div .circle{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    margin-inline-start: 149px;
}

.con-two .values{
    display: flex;
    justify-content: space-around;
}

.con-two .values span:nth-of-type(1){
    position: relative;
    left: -40px;
}

.con-two .values span:nth-of-type(2){
    position: relative;
    left: 38px;
}

.con-two .storage{
    width: 80%;
    height: 80px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    position: relative;
    top: 70px;
    color: hsl(229, 57%, 11%);
    margin: 0 auto;
}

.con-two .storage h1{
    font-size: 30px;
    margin-right: 10px;
}

.con-two .storage span{
    font-size: 20px;
    color: hsl(229, 7%, 55%);
}

.attribution { 
    font-size: 11px; text-align: center;
     color: white;
     margin-top: 80px;
}

.attribution a { 
    color: whitesmoke
}

@media screen and (min-width: 768px) {
    body{
        background-image: url(../images/bg-desktop.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        background-color: hsl(229, 57%, 11%);
    }
    .content{
        display: flex;
        gap: 50px;
    }

    .con-one{
        width: 200px;
        height: 100px;
    }

    .con-two{
        width: 330px;
        height: 60px;
        position: relative;
        top: 40px;
    }

    .con-two-content{
        position: relative;
        top: -15px;
    }

    .con-two .storage{
        width: 30%;
        height: 40px;
        border-radius: 5px;
        position: relative;
        top: -120px;
        left: 110px;
    }

    div .circle{
        margin-inline-start: 220px;
    }

    .storage:before{
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-left: 10px solid transparent;
        border-right: 20px solid white;
        border-bottom: 30px solid transparent;
        margin-top: 60px;
        margin-inline-start: 68px;
    }

    .con-two .storage h1{
        font-size: 18px;
    }

    .con-two .storage span{
        font-size: 12px;
    }
    
}
