@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer p {
    max-width: 800px;
    margin: auto;
}


body {

    background-color: #00393e;
    color: #ffffff;
    line-height: 1.6;
}

main {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
}

header {
    font-family: 'Goldman';
    background-color: #007d69;
    border-color: #007d69;
    border-width: 2px;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

section {
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1000px;
}

.project {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.project h4 {
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.5em;
}

header h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 10px;
}

h3.qui {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 10px;
}

p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    padding: 0 10px;
}

a {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #1e7e34
}
.twitch-link {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background: none;
    padding: 0;
}
.twitch-link img {
    width: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.twitch-link:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px #9146FF);
}


.twitch-link:hover {
    background: none;
}


footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9em;
    color: #007d69;
    padding: 20px;
    border-top: 1px solid #ccc;
}

.btn-cv {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.btn-cv:hover {
    background-color: #1e7e34;
}

.form-container {
    max-width: 500px;
    margin: 40px auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #007d69;
}

.form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1em;
}

.form-container button {
    background-color: #007d69;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #005f52;
}

.php {
    text-align: center;
    font-size: 1.2em;
    margin: 30px auto;
    max-width: 600px;
}