@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.font_color{
    color:rgb(13, 110, 253);
    padding-left: 10px;
}
body{
    font-family: "roboto", sans-serif;
    background: rgb(34, 36, 42);
    color: rgb(243, 243, 242);
    font-size: 16px; /* Standard readable size */
    line-height: 1.6; /* Improves readability */
    margin: 0;
    padding: 0;
}

nav {
    background-color: rgb(255, 188, 143);
    padding: 10px;
    text-align: left;
}

nav a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid black;
    display: inline-block;
}

nav a.selected {
    background-color: rgb(205, 138, 93);
}

nav a:hover {
    background-color: gray;
}

a{
    color: cyan;
}

fieldset{
    width: max(30%, 400px);
}
input{
    border: 2px solid black;
    float: left;
    width: calc(100% - 50%);
}

form {
    overflow: auto;
}
label {
    float: left;
    width: 30%;
}
textarea{
    width: 95%;
    height: 10%;
}

#submit_button {
    float: right;
    width: 20%;
    text-align: center;
    height: 30px;
}