* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.3;
}

#section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(226,242,239);
}

.countdown {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
}

.countdown>img {
    width: 45%;
    height:450px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.countdown>img:hover {
    box-shadow: 0px 0px 10px rgb(95, 95, 95);
    border-radius: 10px;
}

.myarticle {
    width: 50%;
    padding: 20px 10px;
}

.myarticle h1 {
    font-size: 35px;
    color: rgb(0, 149, 255);
    text-transform: capitalize;
    margin: 5px 0px;
}

.giveaway{
    font-size: 40px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.cloclbox {
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
    gap:5px;
}

.mybox {
    width: 100px;
    background-color: black;
    color: white;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
}

.mybox>h1 {
    font-size: 30px;
    font-weight: 800;
}

.mybox p {
    font-size: 25px;
    text-transform: uppercase;
    color: rgb(224, 224, 224);
}

@media screen and (max-width: 818px) {
    #section {
       height: auto;
    }
    .countdown {
        flex-direction: column;
        align-items: center;
    }
    .countdown>img {
        width: 80%;
        height: 300px;
    }
    .myarticle {
        width: 90%;
    }
}

@media screen and (max-width: 515px) {

    .mybox {
        width: 22%;
        padding: 8px 13px;
    }
    
    .mybox>h1 {
        font-size: 25px;
        font-weight: 700;
    }
    
    .mybox p {
        font-size: 14px;
    }

}