@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@100;200;300;400;500;600;700&display=swap');
* {
    font-family: 'Josefin Slab', serif;
}

.container {
    margin-top: 11%;
}

body {
    margin: 0px;
    font-family: 'Josefin Slab', serif;
}

h1 {
    font-size: 60px;
    font-weight: 300;
}

.timer {
    display: flex;
    justify-content: center;
}

.item {
    margin: 0px 20px;
}

.item>p {
    font-size: 40px;
    margin-bottom: 0px;
}

.item>span {
    font-size: 25px;
    font-weight: 600;
}

.social {
    margin-top: 50px;
}

.social>img {
    cursor: pointer;
    margin: 0px 20px;
    width: 30px;
}

.social>img:hover {
    transform: rotate(360deg);
    transition: 0.9s;
}

.btn {
    margin-top: 50px;
    font-size: 19px;
    border-radius: 20px;
    padding: 8px 20px;
    outline: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background-color: #000001;
    color: #FFF;
}

@media only screen and (max-width: 600px) {
    .container {
        margin-top: 50%;
    }
    h1 {
        font-size: 45px;
        font-weight: 300;
    }
    .item>p {
        font-size: 30px;
        margin-bottom: 0px;
    }
    .item>span {
        font-size: 20px;
        font-weight: 600;
    }
}