* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100vh;
}

body {
    overflow-x: hidden;
    flex-direction: column;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(238, 234, 234);
}

.alarm{
    background-color: white;
    width: 450px;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.205);
}
.clock{
    width: 300px;
    margin: 0 auto;
}
img{
    width: 100%;
}
h4{
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 15px;
}
.time-selection{
    margin: 10px 0;
}
.time-selection select{
    font-size: 18px;
    padding: 8px;
    margin: 0 10px;
    border: none;
    background-color: #ff991d86;
    border-radius: 5px;
    width: 110px;
}
.time-selection option{
    background-color: white;
}
button{
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 25px;
    padding: 10px;
    width: 200px;
    background-color: #FF9B1D;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
button:active{
    scale: .9;
}




@media screen and (max-width: 460px) {
    .alarm{
        width: 95%;
    }
    .time-selection select{
        margin: 10px;
        border-radius: 3px;
    }
}