body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    font-family: "Fira Code", monospace;
    font-size: 1rem;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    background-color: linen;
    color: dimgray;

}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    background-color: #F4EADE;
    position: sticky;
    top: 0;
    font-size: 2rem;
    font-family: "Bradley Hand", cursive;
    height: 10vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    color: dimgray;

}

.header{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid dimgray;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 100vw;
    height: 10vh;

}

.brand{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.navigation{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;

}

.logo{
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.logo.ket3l4{
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}


main{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;


}
.main{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 100vw;
    font-size: 2rem;



}
.title{
    font-size: 4rem;
    font-family: "Bradley Hand", cursive;
    line-height: 0;
}
.intro{
    line-height: 0;
    font-size: 1.5rem;

}
.calculator{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24vw;
    height:75vh;
    border-radius: 3rem;
    padding: 1rem;
    background-color: #AFB3A2;
    gap: 1rem;
}

.screen{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    background-color: #E2DDD5;
    border-radius: 3rem;
    padding: 1rem;
    height: 15vh;
    width: 20vw;
    font-size: 2rem;
    text-align: right;
}

.oldResult{
    padding: 1rem;
    font-size: 1rem;


}
.text{
    font-size: 2rem;
    text-align: right;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #E2DDD5;
    color: dimgray;
}
.text:focus{
    outline: none;
}
.buttons{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    height: 50vh;
    width: 25vw;
    color: dimgray;


}

button{
    padding: 0.5rem;
    border-radius: 3rem;
    text-align: center;
    line-height: 0;
    background-color: #E2DDD5;
    font-size: 1.5rem;
    border: none;
    width: 5vw;
    height: 9vh;
    color: dimgray;

}

button:hover{
    background-color: #F4EADE;
    cursor: pointer;
}

