html {
    background-color: hsl(229, 57%, 11%);
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway';
}
#background {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(bg-desktop.png);
    width: 100%;
    height: 800px;
    background-position: bottom;
    background-color: hsl(229, 57%, 11%);
    background-repeat: no-repeat;
}
#card {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 80%;
}
#logobox {
    width: 20%;
    height: 120px;
    border-radius: 5px 50px 5px 5px;
    background-color: hsl(228, 56%, 26%);
    padding: 40px;
}
.icons {
    display: flex;
}
.icons-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color:hsl(229, 57%, 11%) ;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
#datastorage {
    width: 50%;
    height: 150px;
    border-radius: 10px;
    background-color:hsl(228, 56%, 26%) ;
    margin-left: 40px;
    padding: 20px 30px 20px 30px;
    box-sizing: border-box;
}
.top-line {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 14px;
}
#reminderbox {
    width: 160px;
    height: 65px;
    border-radius: 10px 10px 0 10px;
    background-color: white;
    margin-top: -75px;
    padding-left: 20px;
    padding-top: 10px;
    position: relative;
}
#triangle {
    width: 0;
    height: 0;
    border-right: 25px solid white;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    position:absolute;
    right: 0;
    margin-top: -3px;
}
#number {
    font-size: 35px;
    font-weight: bolder;
    color: black;
}
#gb-left {
    color: gray;
    font-weight: bolder;
    font-size: 14px;
}
.loading {
    width: 100%;
    height: 20px;
    background-color: hsl(229, 57%, 11%);
    border-radius: 20px;
    padding: 2px;
}
.color-palette {
    width: 80%;
    height: 16px;
    background-image: linear-gradient(to right,hsl(6, 100%, 80%),hsl(335, 100%, 65%));
    border-radius: 20px;
    padding: 2px 0 2px 0;
}
.wheel {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    float: right;
    background-color: white;
}
.bottom-line {
    font-size: 14px;
    font-weight: bolder;
    color: white;
}
@media (max-width:960px) {
    #card {
        flex-direction: column;
        align-items: center;
    }
    #logobox {
        width: 80%;
        box-sizing: border-box;
        height: 200px;
    }
    #datastorage {
        width: 80%;
        margin-top: 20px;
        margin-left: 0;
        position: relative;
    }
    
    
}
@media (max-width:725px) {
    #reminderbox {
        padding:0;
        padding-top: 10px;
        text-align: center;
        width: 150px;
        top: 200px;
    }
    #logobox {
        width: 300px
    }
    #datastorage {
        width: 80%;
    }
    #reminderbox {
        top:200px;
        left: 20%;
        position: absolute;
        border-radius: 10px;
    }
    #triangle {
        display:none;
    }
}
