@font-face {
    font-family: "Ostrich Sans";
    src: url("/fonts/OstrichSans/OstrichSans-Medium.otf");
    font-display: swap;
}

body {
    background-color: #151d26;
    color: white;
    font-family: "Roboto", sans-serif;
}

h1 {
    margin: 0;
    font-size: 64px;
    letter-spacing: 3px;
    font-family: "Ostrich Sans", "Roboto", sans-serif;
    color: #9effe2;
}

button {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: white;
    border: 2px solid #9effe2;
    background-color: #181818;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

button:hover {
    color: black;
    background-color: white;
    box-shadow: 0 0 15px #9effe2;
    transition: all 0.2s;
}

button:disabled {
    color: #9effe2;
    background-color: #588d7d;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.textarea {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    height: 100px;
    width: 300px;
    resize: none;
    color: white;
    border: 2px solid #9effe2;
    padding: 10px;
    border-radius: 10px;
    background-color: #151d26;
    word-wrap: break-word;
    overflow-y: scroll;
    transition: 0.2s all;
}

.textarea:focus {
    outline: none;
    border: 2px solid white;
    box-shadow: 0 0 20px #9effe2;
    transition: 0.2s all;
}

#buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}