@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Alan Sans", sans-serif;
}

body {
    background-color: #acd2f9;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.container>h1 {
    color: #fff;
    text-align: center;
    font-size: 46px;

}

.stopWatch {
    display: flex;
    gap: 14px;
    background-color: #87aacd;
    justify-content: center;
    /* padding: 40px; */
    width: 360px;
    height: 160px;
    align-items: center;
    border-radius: 16px;
    box-shadow: 00px 20px 40px 8px #7dacdb;
}

.stopWatch p {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
}

.buttonDiv {
    display: flex;
    justify-content: space-evenly;
}

.buttonDiv button {
    background-color: #a5c5e5;
    border: none;
    padding: 20px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 0px 40px 4px #fff;
    font-size: 20px;
}

#milisecond {
    display: none;
}

@media(max-width: 520px) {
    .container>h1 {
        font-size: 40px;
    }

    .stopWatch {
        width: 290px;
    }

    .stopWatch p {
        font-size: 46px;
    }
}