* {
    --font-primary: 'Vazirmatn', sans-serif;
    --bg-primary: url("./back.svg") center center;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: var(--font-primary);
    background: var(--bg-primary);
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.description {
    margin: 20px 0px;
}

.description h2,
p {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6rem;
}

.buttons {
    margin-top: 84px;
}

.buttons i {
    display: none;
    transition: display ease 1s;
    font-size: 30px; /* Adjust icon size */
}

.button {
    position: relative;
    padding: 15px 30px;
    width: 250px;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.button span {
    transition: font-size 0.3s ease-in-out;
    font-family: var(--font-primary);
}
/* Instagram Button */
.instagram-btn {
    background-color: #007BFF;
}
.instagram-btn:hover {
    background-color: #0056b3;
}

/* YouTube Button */
.youtube-btn {
    background-color: #FF0000;
}
.youtube-btn:hover {
    background-color: #cc0000;
}
/* Button Hover Effects */
.button:hover i {
    display: contents;
}
.button:hover span {
  font-size: 0;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 38px;
    }

    .button {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }

    .description h2,
    p {
        font-size: 1.6rem;
        line-height: 1rem;
    }

}