*{
    padding: 0px;
    margin: 0px;
}

header{
    width: full;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    background-color: #B4B4B8;
    color: #3C3633;
}

.container{
    width: full;
    height: 50px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.time{
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    background-color: #A3C9AA;
}

.functions{
    width: full;
    height: 50px;
    gap: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

li{
    padding-left: 20px;
  
}

.btn{
    width: 80px;
    height: 25px;
    background-color: #005B41;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover{
    background-color: green;
}

@media only screen and (max-width: 200px) {
    .container {
        flex-direction: column;
    }
    .time {
        width: 80px;
    }
    .btn {
        width: 60px;
        height: 20px;
        font-size: smaller;
    }
}

@media only screen and (min-width: 201px) and (max-width: 400px) {
    .container {
        flex-direction: column;
    }
    .time {
        width: 120px;
    }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
    .time {
        width: 150px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
    .time {
        width: 180px;
    }
    li {
        text-align: center;
    }
}

@media only screen and (min-width: 801px) and (max-width: 1000px) {
    .time {
        width: 200px;
    }
    li {
        text-align: center;
    }
}

@media only screen and (min-width: 1001px) and (max-width: 1200px) {
    .time {
        width: 220px;
    }
    li {
        text-align: center;
    }
}