@font-face {
    font-family: 'Adigiana';
    src: url('../fonts/AdigianaToyboxRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes turn {
    0% {
      transform: rotate(0deg); /* Start at 0 degrees */
    }
    100% {
      transform: rotate(360deg); /* End at 360 degrees */
    }
}

html{
    background-color: #007FCC;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;

    /*position:relative;
    justify-content: center;
    text-align: center;
    background-image: url('../img/green-bg-patterns-v5.jpg');
    background-position: unset;*/
}

/*html::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index:-1;
}*/

body {
    font-family: "Adigiana", Arial, sans-serif;
    background-color: #65944C;
    color: #000;
    max-width: 600px;
    min-width: 280px;
    margin: 20px 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius:20px;
}

a{
    text-decoration: none;
}

.main-title{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .main-title{
        flex-direction: column;
    }
}

.kekulator-gif{
    clip-path: inset(10px 0px 0px 0px);
    width: 200px;
    height: auto;
}

@media only screen and (max-width: 600px) {
    .kekulator-gif{
        width: 165px;
        height: auto;
        margin-top: -30px;
    }
}

h1 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    line-height: 45px;
	margin:0;
}

h1 .kekulator{
    color:#000;
    font-size: 70px;
    line-height: 75px;
    -webkit-text-stroke-width: 1.5px;
    stroke-width: 1.5px;
    -webkit-text-stroke-color: #fff;
    stroke: #fff;
    /*text-shadow: 0px 0px 10px #228B22;*/
    display:block;
}

@media only screen and (max-width: 400px) {
    h1 .kekulator{
        font-size: 60px;
        line-height: 65px;
    }
}

h1 .ticker{
    color:#000;
    -webkit-text-stroke-width: 1.5px;
    stroke-width: 1.5px;
    -webkit-text-stroke-color: #fff;
    stroke: #fff;
    /*text-shadow: 0px 0px 10px #228B22;*/
}

.sub-title h2{
    text-align:center;
    color: #fff;
    font-size: 32px;
    line-height: 35px;
    font-weight: 400;
    -webkit-text-stroke-width: 0.3px;
    stroke-width: 0.3px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    margin-top:0;
}

@media only screen and (max-width: 575px) {
    .sub-title h2{
		margin-top:15px;
    }
}

@media only screen and (max-width: 575px) {
    .sub-title h2{
        font-size: 25px;
        line-height: 30px;
    }
}


.info {
    background-color: #228B22;
    /*background-color: #007FCC;*/
    padding: 10px;
    margin-bottom: 20px;
    border-radius:20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    /*position:relative;
    justify-content: center;
    text-align: center;
    background-image: url(../img/green-bg-patterns-v5.jpg);
    background-position: unset;*/
}

/*.info::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    z-index:-1;
}*/

.info p{
    font-family: "Poppins-Bold", sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom:0;
}

h3{
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:20px;
}

h3 img{
    width:50px;
    height:auto;
    margin-left:5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: turn 3s linear infinite;
}

.info p{
    color: #fff;
    margin: 0;
    text-align:center;
    margin-bottom:10px;
}

.live-value{
    font-family: "Poppins-SemiBold", sans-serif;
    text-align: left;
    margin-top: 0;
    color: #fff;
    font-size: 15px;
    margin-bottom:15px;
}

label{
    font-size:25px;
}

input,
button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    background-color: #D14E00;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    font-size: 25px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    border-color: #E8E8E8;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.26);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-radius: 10px 10px 10px 10px;
    width: 100%;
    margin-bottom: 15px;
    font-family: "Adigiana", Arial, sans-serif;
}

button::before{
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 10px 10px 10px 10px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s;
    z-index:-1;
}

button:hover:before {
    width: 100%;
}

button:hover {
    /*background-color: #000;*/
}

.calculate-btn{
    margin-top:30px;
}

.result {
    display:none;
    text-align: center;
    margin-top: 20px;
    font-family: "Poppins-Medium", sans-serif;
    font-size: 15px;
    color:#fff;
    padding: 30px 10px 10px 10px;
    /*background-color:#000;*/
    /*background-color: #228B22;*/
    background-color: #007FCC;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.16);
    border-radius:20px;
}

.result-watermark{
    margin-top: -22px;
    position: absolute;
    width: 100%;
    left: 0;
    font-family: "Adigiana", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color:#000;
}

.result-value{
    font-size: 25px;
}

#result-xfactor{
    margin-top: -9px;
    position: absolute;
    width: 100%;
    left: 0;
    font-size: 18px;
}

.result-price{
    font-size: 13px;
    margin-top: 5px;
    position: absolute;
    width: 100%;
    left: 0;
}

.result-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    color: #000;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    stroke: #FFFFFF;
    font-size: 30px;
    font-family: "Adigiana", Arial, sans-serif;
    column-gap: 5px;
}

.result-logo img{
    width:50px;
    height:auto;
}

footer{
    text-align: center;
    margin-top: 65px;
}

footer button{
    background-color:#228B22
}

footer .main-website{
    border-top: 2px solid #00000059;
    width: 80%;
    min-width: 280px;
    margin: auto;
}

footer .main-website img{
    width: 150px;
    height: auto;
}

footer .kek-socials{
    display:flex;
    justify-content: center;
    column-gap:10px;
}

footer .kek-socials button{
    padding: 5px;
    width: fit-content;
    min-width:70px;
}

footer .kek-socials button img{
    width:25px;
    height:auto;
}