@font-face {
    font-family: 'PartyFont';
    src: url('images/GLOCK___.TTF') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'PartyFont', Arial, sans-serif;
    line-height: 1.5;
    color: white;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

p {
    line-height: 1.5;
}

a {
    color: black;
    text-decoration: none;
}

small {
    font-size: 20px;
}

.page {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content {
    text-align: center;
    font-size: 25px;
    line-height: 2;
    margin: 20px auto;
    color: black;
    text-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white, 0 0 40px white;
}

.content .what {
    color: Violet;
    text-shadow: 0 0 10px Violet, 0 0 20px Violet, 0 0 30px Violet, 0 0 40px Violet;
}

.content .when {
    color: lime;
    text-shadow: 0 0 10px lime, 0 0 20px lime, 0 0 30px lime, 0 0 40px;
}

.content .where {
    color: DodgerBlue;
    text-shadow: 0 0 10px DodgerBlue, 0 0 20px DodgerBlue, 0 0 30px DodgerBlue, 0 0 40px DodgerBlue;
}

.content .register {
    color: orange;
    text-shadow: 0 0 10px orange, 0 0 20px orange, 0 0 30px orange, 0 0 40px orange;
}

.content .feedback {
    color: black;
    text-shadow: 0 0 10px yellow, 0 0 20px yellow, 0 0 30px yellow, 0 0 40px yellow;
}

.content .error {
    color: black;
    text-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red, 0 0 40px red;
}

h1, h2, h3 {
    font-size: 40px;
    -webkit-text-stroke: 1px black;
}


input, textarea, button {
    text-align: center;
    font-size: 18px;
    color: white;
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid white;
}

input[type="radio"], input[type="checkbox"] {
    height: 17px;
    width: 17px;
    background-color: #fff;
    margin-right: 5px;
}

textarea {
    width: 85%;
    height: 50px;
}

input::placeholder, textarea::placeholder, ::placeholder {
    font-size: 15px;
}

button {
    color: yellow;
    padding: 10px;
    font-weight: bold;
}

button:hover {
    color: black;
    background-color: yellow;
}

a.wa:hover {
    color: green;
}

a.fb:hover {
    color: blue;
}






.logo {
    margin: auto;
    width: 365px;
    line-height: 1;
}

.just {
    position: relative;
    color: black;
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    -webkit-text-stroke: 1px Gainsboro;
    text-align: left;
    margin: 7px;
}

.party {
    position: relative;
    background: linear-gradient(to right, red, orange, yellow, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px black;
    font-size: 100px;
    font-weight: bold;
}

.just::before, .party::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: white;
    text-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white, 0 0 40px white, 0 0 50px white, 0 0 60px white, 0 0 70px white;
    filter: blur(5px);
}