@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    font-family: 'Arial', sans-serif;
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 900;
}

h2 {
    margin-top: 30px;
    margin-bottom: 0px;
}

ol,
ul {
    margin-top: 0px;
}

hr {
    border: 1.5px solid #ffd700;
    margin-top: 40px;
    margin-bottom: 40px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

textarea {
    resize: none;
}

button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #ffcc00;
    color: #333;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e6b800;
}

button:disabled {
    background-color: #ccc;
    color: #666;
    border: 1px solid #aaa;
    opacity: 0.6;
}

.container {
    text-align: start;
    max-width: 800px;
    padding: 30px;
}

.center-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 30px;
}

a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.footer {
    width: 100%;
    background: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

#fixed {
    position: fixed;
    bottom: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 14px;
        padding: 10px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }

    .container,
    .center-container {
        padding: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
        padding-left: 20px;
        align-items: start;
    }

    .footer-link {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 16px;
        padding: 12px;
    }

    button {
        font-size: 16px;
        padding: 12px;
    }

    .container,
    .center-container {
        padding: 25px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
        padding-left: 25px;
        align-items: start;
    }

    .footer-link {
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    h1 {
        font-size: 36px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 18px;
        padding: 15px;
    }

    button {
        font-size: 18px;
        padding: 15px;
    }

    .container,
    .center-container {
        padding: 20px;
        background: #222;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        margin: 30px auto;
    }

    .footer-link {
        font-size: 16px;
    }
}