body {
    font-family: Arial, sans-serif;
    background-image: url(planeta\ terra.jpg);
    text-align: center;
    box-sizing: border-box;
    color: #fcce00;
}

#converterForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

textarea,
pre {
    width: 600px;
    height: 200px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 12px;
    resize: none;
}

pre {
    height: auto;
    margin: 1.5rem auto;
    text-align: left;
}

button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    color: #000000;
    background-color: #fcce00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
}

button:hover {
    background-color: #1bd302;
}

nav a {
    color: #fcce00;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 10px 0;
    }

    header {
        padding: 50px 0;
    }

    h1 {
        font-size: 6em;
    }
}



a {
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
}

a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fcce00;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

a:hover::before {
    width: 100%;
}

.back-button {
    padding: 25px;
}

header {
    padding: 5%
}