    @import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
    * {
        box-sizing: border-box;
    }
    
    :root {
        --border-color: #144fc6;
        --fill-color: #9FC9F3;
    }
    
    body {
        background-color: #A460ED;
        font-family: 'Monteserrat', sans-serif;
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        color: #fff;
        flex-direction: column;
        margin: 0;
    }
    
    h1 {
        margin: 10px 0 0;
    }
    
    h3 {
        font-weight: 400;
        margin: 0;
    }
    
    .cup {
        background-color: white;
        border: 4px solid var(--border-color);
        color: var(--border-color);
        border-radius: 0 0 40px 40px;
        height: 330px;
        width: 150px;
        margin: 30px 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .cup.cup-small {
        width: 50px;
        height: 95px;
        border-radius: 0 0 15px 15px;
        background-color: rgb(255, 255, 255, 0.9);
        cursor: pointer;
        font-size: 14px;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 5px;
        transition: 0.3s ease;
    }
    
    .cup.cup-small.full {
        background-color: var(--fill-color);
        color: white;
    }
    
    .cups {
        display: flex;
        flex-wrap: wrap;
        width: 280px;
        align-items: center;
        justify-content: center;
    }
    
    .remained {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        flex: 1;
        transition: 0.5s ease;
    }
    
    .remained span {
        font-size: 20px;
        font-weight: bold;
    }
    
    .remained small {
        font-size: 12px;
    }
    
    .percentage {
        background-color: var(--fill-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        font-weight: bold;
        height: 0;
        transition: 0.3s ease;
    }
    
    .text {
        text-align: center;
        margin: 0 0 5px;
    }