@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2em;
    color: wheat;
    user-select: none;
    text-shadow: 1px 2px 3px black;
}

.navigation a {
    position: relative;
    font-size: 1.1em;
    color: #ffff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    padding: 6px 15px;
    transition: .5s;
}

.navigation a:hover,
.navigation a.active {
    color: #333;
}

.navigation a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffff;
    border-radius: 30px;
    z-index: -1;
    transform: scale(0);
    opacity: 0;
    transition: .5s;
}

.navigation a:hover span,
.navigation a.active span {
    transform: scale(1);
    opacity: 1;
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../images/background3.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#text {
    position: absolute;
    font-size: 5em;
    color: wheat;
    text-shadow: 1px 2px 3px black;
    margin-bottom: 200px;
}

.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.parallax img#gate-left {
    position: fixed;
    transform: translateX(-282px);
}

.parallax img#gate-right {
    position: fixed;
    transform: translateX(305px);
}

.sec {
    position: relative;
    background: black;
    padding: 30px 100px;
}

.sec h2 {
    font-size: 3em;
    color: #ffff;
    margin-bottom: 10px;
}

.sec p {
    font-size: 1em;
    color: #ffff;
    font-weight: 300;
    text-align: justify;
}


.footer{
    position: relative;
    background: black;            
    text-align: center;
}

.footer .share{
    padding: 2em 0;
}

.footer .share a{
    width: 2em;
    height: 2em;
    line-height: 5em;
    color: white;
    font-size: 2rem;
    border: var(--border);
    border-radius: 50%;
    margin: 0.3em;
    text-decoration: none;
    display: inline-block;
}

.footer .credit{
    font-size: 15px;
    color: white;
    font-weight: 300;
    padding-top: 1.5rem;
}

.footer .credit span{
    color: #ff0000;
}

.container {
    background-color: black;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    right: 0px;
    margin-left: 650px;
}

.container h3{
    color: white;
}

.form-group {
    margin-bottom: 20px;
    color: white;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.form-group button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}