* {
    margin: 0;
    padding: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
body {
    height: 100vh;
    background: linear-gradient(270deg, rgba(131,58,180,1) 0%, rgba(220,82,82,1) 50%, rgba(252,176,69,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.container {
    background: linear-gradient(207deg, rgba(238,174,202,1) 0%, rgba(220,224,228,1) 46%, rgba(221,222,227,1) 61%);
    width: 580px;
    padding: 5px 25px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-radius: 30px;
}
.container h1 {
    font-size: 33px;
    font-weight: 700;
    text-align: center;
    user-select: none;
    color: rgb(6, 22, 9);
}
.inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inputs:first-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kon {
    display: flex;
    gap: 10px;
}

.kon div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#small {
    font-size: 13px;
}

#result,
#inputValue {
    height: 40px;
    font-size: 25px;
    border: 2px solid gray;
    outline: none;
    padding: 0 10px;
    font-weight: 600;
}

#result:focus,
#inputValue:focus {
    height: 40px;
    font-size: 25px;
    border: 2px solid rgb(130, 255, 138);
    outline: none;
    padding: 0 10px;
}
#btn {
    height: 40px;
    font-size: 20px;
    font-weight: 600;
    background-color: rgb(17, 255, 0);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
#btn:hover{
    background-color: rgb(90, 90, 202);
    font-size: 24px;
    font-weight: 970;
    border-radius: 20px;
    border: 2px solid rgb(47, 255, 89);
}
.resultss {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#type1,
#type2 {
    height: 41px;
    font-size: 25px;
    border: 1px solid gray;
    border-left: none;
    border-right: none;
    border-top: none;
    outline: none;
    padding: 0 10px;
}

#type1:focus,
#type2:focus {
    height: 41px;
    font-size: 25px;
    border: 1px solid rgb(130, 130, 255);
    border-left: none;
    border-right: none;
    border-top: none;
    outline: none;
    padding: 0 10px;
}

label {
    font-size: 17px;
    color: rgb(114, 150, 7);
}

@media only screen and (max-width: 575px) {
    .container {
        transform: scale(0.95);
    }
}
@media only screen and (max-width: 425px) {
    .container {
        transform: scale(0.9);
    }
}
@media only screen and (max-width: 340px) {
    .container {
        transform: scale(0.8);
    }
}