@charset "utf-8";

/* Body */
body {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 1.0em;
    line-height: 1.2;
    font-family: 'Pally', sans-serif;
    background: #ffffff;
    text-align: center;
    height : 100vh;
}

@font-face {
  font-family: 'Pally';
  src: url('../assets/fonts/Pally-Regular.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pally';
  src: url('../assets/fonts/Pally-Medium.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pally';
  src: url('../assets/fonts/Pally-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* fiolet #602672 , niebieski #2791d0 */

	/*
	height : 100vh;
	width : 100vw;
    */

/* flexbox */
.flex-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-evenly;
    height : 100vh;
    box-sizing: border-box;
}

.section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    .flex-container {
        flex-direction: column;
    }
}

#animacje {
    background: #602672 url('../assets/images/animacje.webp');
    background-position: center;
    background-size: cover;
}

#plywanie {
    background: #532162 url('../assets/images/plywanie.webp');
    background-position: center;
    background-size: cover;
}   

#obozy {
    background: #602672 url('../assets/images/obozy.webp');
    background-position: center;
    background-size: cover;
}

.logotyp {
    z-index: 100;
    position: absolute;
    margin-top: 3vh;
    left: 0;
    right: 0;
}

.logotyp img {
	pointer-events: none;
	user-drag: none;
    filter: drop-shadow(0 0 0.5rem #ffffff);
}

@media (max-width: 1000px) {
    .logotyp {
        margin-top: 1vh;
    }
    .logotyp img {
        width: 25vh;
    }
}

/* Przyciski */
.button-container {
    margin: 0;
	text-align: center;
}

.primary-button {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 16px;
    border-bottom: 6px solid #226d9a;
    color: #ffffff;
    background-color: #2791d0;
    text-decoration: none;
    font-size: 40px;
    transition: all 200ms;
    font-weight: 700;
	
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.primary-button:hover {
    background-color: #1f77ac;
    border-color: #195477;
}

.primary-button:active {
    color: #226d9a;
    background-color: #195579;
    border-color: #226d9a;
}