body {
    margin: 0;
    padding: 0;
    background-image: url('hairday_bg_1920x1080px.png');
    background-size: cover; /* dopasowanie obrazu do wielkości okna przeglądarki */
    background-repeat: no-repeat; /* brak powtarzania obrazu */
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.logo {
    width: 260px;
    height: 260px;
    animation: pulse 1s alternate infinite; /* Użyj animacji 'pulse' */
	margin-bottom: 30px;
}

@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: Poppins SemiBold, sans-serif; /* Krój czcionki */
    	color: #fff; /* Kolor tekstu */
	font-size: 13px;
	margin-top: 20px;

}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 7px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.3);
}

.social-icon img {
    width: 35px;
    height: 35px;
}

.buttons {
    margin-top: 24px;
    margin-bottom: 24px;
}

.buttons {
    display: inline-block;
    margin: 3px;
    transition: transform 0.3s;
}

.buttons:hover {
    transform: scale(1.15);
}

.buttons img {
    width: 246px;
    height: 34px;
}
