@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #181F1C;
    --secondary-color: #9EA93F;
    --tertiary-color: #274029;
    --quaternary-color: #fff;
}

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style for the header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    color: var(--quaternary-color);
    width: 100%;
}

/* Style for the title */
.title {
    font-size: 35px;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 2px #181f1c8a;
}

/* Style for the header title */
header  h1 {
    font-size: 30px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

/* Style for the body and main container */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: linear-gradient(var(--tertiary-color), var(--secondary-color));
    overflow: hidden; /* Remove a rolagem */
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Style for the main content area */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #2c2e1907;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px var(--primary-color);
    width: 100%;
    max-width: 800px;
    height: calc(100% - 40px); /* Ajusta a altura para ocupar a tela inteira */
}

/* Style for the box element */
.box {
    width: 175px;
    height: 200px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 1px 1px 5px #526b608a;
}

/* Style for the controls container */
.controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Style for the labels in the controls */
.controls label {
    margin-top: 15px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    text-shadow: 1px 1px 5px #181f1c8a;
}

/* Style for the input fields */
.input {
    width: 60px;
    padding: 5px;
    border-radius: 15px;
    margin-top: 5px;
    border: none;
    box-shadow: 2px 3px 4px var(--primary-color);
}

/* Style for the buttons */
button {
    margin-top: 10px;
    padding: 5px 10px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 2px 3px 4px #181f1c8a;
}
button:hover {
    background-color: #a0a738;
    color: var(--quaternary-color);
    transition: 0.5s;
}

/* Style for the textarea */
textarea {
    width: 300px;
    margin-top: 20px;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    resize: none;
    border-radius: 10px;
    box-shadow: 2px 3px 6px #181f1ca1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    resize: none;
}
