@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --gradient: linear-gradient(90deg, hsl(6, 100%, 80%), hsl(335, 100%, 65%));

    --blue-200: hsl(243, 100%, 93%);
    --grayish-blue: hsl(229, 7%, 55%);
    --blue-850: hsl(228, 56%, 26%);
    --blue-950: hsl(229, 57%, 11%);

    --font-size-body: 14px;
    --font-family: 'Raleway', sans-serif;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding: 1em;
    color: var(--blue-200);
    font-size: var(--font-size-body);
    font-family: var(--font-family), sans-serif;
}

.bold { font-weight: var(--font-weight-bold); }

.large {
    font-size: calc(3 * var(--font-size-body));
    margin-right: 0.25em;
}

.color-blue-200 { color: var(--blue-200); }
.color-blue-950 { color: var(--blue-950); }
.color-grayish-blue { color: var(--grayish-blue); }

.bgc-blue-950 { background-color: var(--blue-950); }

.desk { display: none; }

.mob {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.one {
    margin-bottom: 1em;
    padding: 2em 6em 2em 2em;
    border-radius: 8px 4em 8px 8px;
    background-color: var(--blue-850);
}

.two {
    padding: 2em 2em 4em;
    border-radius: 8px;
    background-color: var(--blue-850);
    text-align: center;
}

.bar {
    height: 1.5em;
    background-color: #14204A;
    border-radius: 1em;
    margin: 1em 0;
    padding: 4px;
}

.loading-bar {
    display: flex;
    padding: 4px 2px;
    width: calc(815% * 100 / 1000);
    height: 100%;
    border-radius: inherit;
    justify-content: flex-end;
    align-items: center;
    background-image: var(--gradient);
}

.circle {
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.storage {
    text-align: start;
    display: flex;
    justify-content: space-between;
}

.left {
    background-color: white;
    padding: 1em;
    width: fit-content;
    text-transform: uppercase;
    color: #86858D;
    display: flex;
    align-items: center;
    word-spacing: 0.25em;
    justify-self: center;
    border-radius: 1em;
    translate: 0 -50%;
}

.icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2em;
}

.icons div {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

@media screen and (min-width: 768px) {
    body {background-color: #0C122C; }

    main {
        display: flex;
        flex-direction: row;
        max-width: 800px;
        margin-bottom: 2em;
    }

    .one {
        margin-bottom: 0;
        margin-right: 1em;
        width: 100%;
        max-width: 300px;
    }

    .two {
        height: 75%;
        align-self: flex-end;
        width: 500px;
    }

    .two p { text-align: start; }

    .left {
        position: absolute;
        translate: -65% 0;
    }

    .left::after {
        content: "";
        position: absolute;
        right: -5px;
        bottom: -20px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 30px solid white;
        rotate: -20deg;
    }

    .desk {
        display: block;
        z-index: -1;
        position: fixed;
        top: 50%;
        left: 0;
        height: 50%;
        width: 100%;
    }

    .mob { display: none; }
}

