*{
    padding: 0;
    margin: 0;
}
html{
    --one: #141E27;
    --two: #203239;
    --three: #E0DDAA;
    --four: #EEEDDE;
}
body{
    background: var(--one);
    margin: 0 auto;
    width: 80vw;
}

nav{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}
#logo{
    font-family:'Times New Roman', Times, serif ;
    font-size: xx-large;
    letter-spacing: 2px;
}
#logo, #menu{
    color: var(--three);
}
#menu ul li{
    display: inline;
    list-style: none;
    font-size: x-large;
    letter-spacing: 3px;
    padding: 10px;
}
a{
    text-decoration: none;
    color: inherit;
}
hr{
    margin-bottom: 60px;
}
h3{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}
#input{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.action{
    max-width: 2fr;
}
.title{
    color: var(--four);
    font-size: 25px;
    letter-spacing: 3px;
    margin: 30px;
    
}
#div{
    display: flex;
    justify-content: space-around;
}
textarea{
    background-color: var(--four);
    padding: 10px;
    border-radius: 10px;
    height: 30vh;
    width: 35vw;
    box-shadow:7px 7px 30px 5px var(--two);
}

#commands{
    display: flex;
}
button{
    padding: 10px;
    border-radius: 10px;
    margin: 15px;
    width: 33%;
    height: max-content;
    cursor: pointer;
}
button:active{
    transform: translateY(-3px);
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    background-color: var(--four);
    width: 100vw;
    height: 8vh;
    position: absolute;
    bottom: 0;
    left: 0;
}
.modal{
    position: fixed;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 30, 39, 0.5);
    transform: scale(1.1);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.25s ease-in-out, transform 0.25s ease-in-out, opacity 0.25s ease-in-out ; 
}

.modal-content{
    justify-content: center;
    background-color: whitesmoke;
    padding: 30px;
    width: 50vw;
    border-radius: 0.5rem;
}

.close-button{  
    float: right;
    text-align: center;
    width: 1.3vw;
    cursor: pointer;
    background-color: lightgray;
    line-height: 24px;
}

.close-button:hover{
    background-color: var(--three);
}

.show-modal{
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
}

#his{
    display: grid;
    grid-gap: 30px;
}



