.attribution {
    font-size: 11px;
    text-align: center;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --Gradient: linear-gradient(
        to right,
        hsl(6, 100%, 80%),
        hsl(335, 100%, 65%)
    );
    --PaleBlue: hsl(243, 100%, 93%);
    --GrayishBlue: hsl(229, 7%, 55%);
    --DarkBlue: hsl(228, 56%, 26%);
    --VeryDarkBlue: hsl(229, 57%, 11%);
}
body {
    background-color: var(--VeryDarkBlue);
    font-weight: 400;
}
.wrapper {
    display: grid;
    place-content: center;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--PaleBlue);
    font-family: "Raleway", sans-serif;
}
.container {
    display: flex;
}
.left {
    background-color: var(--DarkBlue);

    min-height: 170px;
    min-width: 420px;
    position: relative;
    border-radius: 10px;
    border-top-right-radius: 80px;
    margin-right: 30px;
}

.left > img {
    position: absolute;
    top: 30px;
    padding-left: 60px;
}
.left__Icon {
    position: absolute;
    bottom: 30px;
    /* background-color: #fff; */
    display: flex;
    padding-left: 60px;
}
.left__Icon div {
    margin-right: 15px;
    height: 45px;
    width: 45px;
    background-color: var(--VeryDarkBlue);
    border-radius: 10px;
    position: relative;
}
.left__Icon div img {
    position: absolute;
    bottom: 12px;
    left: 10px;
}
.background-image {
    position: absolute;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    bottom: 0px;
    border-top-left-radius: 210px;
    z-index: -1;
}
.right {
    width: 420px;
    height: 120px;
    margin-top: 50px;
    background-color: var(--DarkBlue);
    padding: 30px;
    position: relative;
    border-radius: 10px;
}
.message {
    background-color: white;
    color: black;
    position: absolute;
    right: 10px;
    top: -40px;
    min-height: 50px;
    padding: 10px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    color: var(--GrayishBlue);
}
.pointy {
    position: absolute;
    right: 0;
    height: 25px;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #fff;
}
.message span {
    font-size: 2em;
    color: var(--VeryDarkBlue);
}
.label {
    display: flex;
    justify-content: space-between;
}

.progressBar {
    background-color: var(--VeryDarkBlue);
    border-radius: 20px;
    height: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
    overflow: hidden;
}
.progress {
    background-image: var(--Gradient);
    border-radius: 20px;
    position: relative;
    height: 15px;
    width: 75%;
}
.progress-circle {
    height: 12px;
    width: 12px;
    position: absolute;
    right: 2px;
    top: 1.5px;
    border-radius: 10px;

    background-color: #fff;
}
.makebold {
    font-weight: 700;
}
.background-mobile-image {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    width: 100%;
    display: none;
}
.background-mobile-image img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 800px) {
    .background-image {
        display: none;
    }
    .background-mobile-image {
        display: block;
    }
    .container {
        display: flex;
        flex-direction: column;
    }
    .pointy {
        display: none;
    }
    .message {
        background-color: white;
        color: black;
        position: absolute;
        right: 50%;
        transform: translateX(70px);
        top: 90px;
        border-radius: 10px;
    }
}
