<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --font-family-roboto: 'Roboto', sans-serif;
    --font-size-10px: 0.625em;
    --font-size-14px: 0.875em;
    --font-size-16px: 1em;
    --font-size-25px: 1.563em;
    --font-color:#E6D5B8;
    --color-result:#FF0000;
}



body{
    width: 100vw;
    background: #1B1A17 url(images/smoke.svg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: var(--font-family-roboto);
}

.content-all{
    margin-top: 1rem;
    width: 35rem;
    border: 1px solid #FF0000;
    border-radius: .5rem;
    box-shadow: 0px 1px 10px 0 #FF0000;
    padding: 1rem;
}

header{
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: .5rem;
    
}

header .title{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

header p{
    margin-top: .5rem;
}

.title a{
    text-decoration: none;
    color: #FF0000;

}

main{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
   
}

.container{
    display: flex;
    flex-direction: column;
    align-items:flex-end;
    gap: 1rem;
    font: 400 var(--font-size-14px) var(--font-family-roboto);
}

.box-calc{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.box-calc input, button{
    width: 3rem;
    height: 2rem;
    font: 700 var(--font-size-16px) var(--font-family-roboto);
    color: #1B1A17;
    border-radius: 0.313rem;
    outline: none;
    border: none;
    text-align: center;
}

button{
    width: 5.125rem;
    height: 2.2rem;
    cursor: pointer;
    background-color: #E6D5B8;
    box-shadow: 0 1px 5px 0 #FF0000;
}

button:hover{
    color: #E6D5B8;
    background-color: #FF0000;
    box-shadow: 0 1px 5px 0 #E6D5B8;
    cursor: pointer;
}


.calc-result{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
    
}

.calc-result label{
    color: #FF0000;
    border: 1px solid #FF0000;
    border-radius: 0.313rem;
    background-color: #1B1A17;
    box-shadow: 0 1px 5px 0 #FF0000;
    text-align: center;
    margin-top: .5rem;
    font-size: var(--font-size-25px);
    padding: .5rem;
}

section {
    margin-top: 2rem;
    font-weight: 700;
}

footer{
    font: 300 var(--font-size-10px) var(--font-family-roboto);
    position: relative;
    margin: 1rem;
}

@media(max-width: 750px){
    .content-all{
        width: 23rem;
    }
}

@media (max-width: 400px) {
    .content-all{
        width: 20rem;
    }
}


</pre></body></html>