body {
    margin: 0;
    padding: 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.logo {
    width: 350px;
    height: 350px;
    animation: pulse 1s alternate infinite; /* Użyj animacji 'pulse' */
}

@keyframes pulse {
    0% {
        transform: scale(1); /* Początkowy rozmiar */
    }
    100% {
        transform: scale(0.9); /* Rozmiar po zakończeniu animacji */
    }

}

.description {
	text-align: center;
    	font-family: Calibri, sans-serif; /* Krój czcionki */
    	color: #fff; /* Kolor tekstu */
	font-size: 13px;

}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.3);
}

.social-icon img {
    width: 40px;
    height: 40px;
}
