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

body {
    background-color: blue;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

img {
    width: 50%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-family: 'Figtree', sans-serif;
    max-width: 90%;
    word-wrap: break-word;
}

.counter-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
}

.counter-box {
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 60px;
    font-weight: bold;
    font-family: 'Figtree', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.label {
    font-size: 16px;
    margin-top: 5px;
    font-weight: normal;
    text-transform: uppercase;
}

.share-container {
    margin-top: 30px;
    text-align: center;
}

.share-button {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 10px 15px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: lightgray;
}

@media (max-width: 768px) {
    body {
        height: auto;
    }
    .counter-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .counter-box {
        width: 90%;
        height: 120px;
        font-size: 50px;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    img {
        width: 70%;
        max-width: 150px;
    }
}
