body {
    background: linear-gradient(45deg, #240165, #05001c);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
}

#time {
    font-size: 120px;
    color: white;
    font-weight: 700;
}

#date {
    font-size: 30px;
    font-weight: 200;
    color: white;
}

#head {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

hr {
    margin: 0px 50px;
    border-color: white;
    opacity: 0.2;
}

#cards {
    display: flex;
    margin-top: 20px;
    justify-content: space-around;
}

#card {
    background: #5200e1;
    height: 170px;
    width: 160px;
    color: white;
    display: flex;
    flex-direction: column;
    margin: 10px;
    background-color: white;
}

#last {
    text-align: center;
    margin-top: 40px;
    font-size: 40px;
    color: black;
}

#first {
    border: #05001c 1px solid;
    background: linear-gradient(45deg, #5709ee, #7a37bf);
    height: 40px;
    font-size: 30px;
}

label {
    font-size: 30px;
    color: white;
    text-align: center;
}

#footer {
    text-align: center;
    font-size: 40px;
    color: black;
}

#mySelect {
    border: #05001c 1px solid;
    background: linear-gradient(45deg, #5709ee, #7a37bf);
    height: 40px;
    width: 200px;
    font-size: 30px;
    border-radius: 20px;
    cursor: pointer;
}

option {
    border-radius: 20px;
    font-size: 30px;
    background-color: #05001c;
    color: white;
    cursor: pointer;
}

@media only screen and (max-width: 450px) {
    #cards {
        display: flex;
        flex-direction: column;
        margin-left: 40px;
        text-align: center;
        justify-content: space-around;
    }
    #card {
        border-radius: 20px;
    }
    #first {
        text-align: center;
    }
    #time {
        text-align: center;
        font-size: 67px;
    }
    option {
        font-size: 20px;
    }
    #mySelect {
        font-size: 25px;
    }
}

@media screen and (max-width: 400px) {
    #cards {
        margin-left: 65px;
    }
    #card {
        width: 200px;
    }
}