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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    background-color: rgb(100, 255, 180);
}

.wedding{
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
     
}

.countdown{
    display: flex;
    justify-content: space-around;
    text-align: center;
}

h2 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding-top: 2rem;
}

small{
    font-size: 1rem;
    padding-bottom: 2rem;
    font-weight: bold;
}

.day,.hour,.minute,.second{
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    font-weight: bold;
}

.waiting{
    height: 30rem;
    padding: 2rem;
}

@media(max-width: 500px){
    h2 {
        font-size: 45px;
    }
    .time{
        margin: 5px;
    }
    .small{
        font-size: 12px;
    }
}