:root{
    --prime-color:#FF6347;
    --secondry-color:#4682B4;
    --background-color:#F5F5F5;
    --accent-color:#FFD700;
}
/* .press-start-2p-regular {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}   */
*{
    margin: 0px;
    font-family: "Press Start 2P", system-ui;
    font-weight: 5;
    /* transition-property: all; */
    /* transition-duration: 0.5s; */
}
body{
    background-color: var(--background-color);
}
header{
    background-color: var(--prime-color);
    text-align: center;
    padding: 2vmin;
}
.title{
    color: var(--secondry-color);
}
.container{
    margin: auto;
    width: 90vw;
    height: 90vh;
    /* background-color: antiquewhite; */
}
.output{
    display: flex;
    width: 100%;
    height: 30%;
    align-items: center;
    justify-content: center;
    /* background-color: var(--default-color); */
    justify-content:space-evenly;
}
.box{
    width: 7rem;
    height: 7rem;
    border: none;
    border-radius: 5vmin;
}

.input{
    display: flex;
    width: 100%;
    height: 50%;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    /* background-color: var(--default-color); */
    justify-content:space-evenly;
}
.data{
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.btn{
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    
}

.btn button{
    width: 20vmin;
    height: 20vmin;
    transition-property: all;
    transition-duration: 5s;
}

.btns{
    border-radius: 50px;
    border: none;
    margin: 3vmin;
}
.btn button:hover{
    border: 2px solid black;
}
.cmd{
    display: flex;
    /* justify-content: space-evenly; */
    /* align-items: center; */
    gap: 10px;
}
.cmd button{
    padding: 3vmin;
    border: none;
    border-radius: 5px;
    background-color: var(--prime-color);
    /* width: 15vmin; */
    /* height: 10vmin; */
    transition-property: all;
    transition-duration: 0.5s;
}
.cmd button:hover{
    background-color: var(--secondry-color);
}
.icon{
    font-size: 200%;
}

#result{
    font-weight: bolder;
    color: rgb(95, 0, 0);
    align-items: center;
    margin: auto;
    text-align: center;
}