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

@font-face {
    font-family: "BackToShool";
    src: url("fonts/BACK TO SCHOOL PERSONAL USE.ttf");

}

@font-face {
    font-family: 'Erbos';
    src: url("fonts/erbos-draco-1st-nbp.otf")
}


body {

    background-image: url("images/jordan.webp");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

.points-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.points-section h2{
    font-family: "BackToShool", sans-serif;
    font-weight: 100;
    font-size: 3rem;
}

.points-section p {
    font-family: "Erbos", sans-serif;
    font-size: 8rem;
    margin-bottom: 10px;
}

button {
    font-family: "Erbos", sans-serif;
    font-size: 3rem;
    background-color: black;
    cursor: pointer;
    color: rgb(189, 119, 119);
}

button:hover {
    border: 2px solid red;
    transform: scale(1.1);
}

.counter {
    width: 800px;
    height: 500px;
    max-width: 500px;
    background-image: url("images/board.png");
    background-size: contain;
    background-repeat: no-repeat; 
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
    
}

@keyframes fadeIn {
    0% {
        transform: translateY(-700px); 
    }
    100%{

    }
}

#countdown{
    font-family: 'Cursed Timer ULiL', sans-serif;
    color: black;
    font-size: 2.5rem;
    margin-bottom: 30px;
}