* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-image: url('./assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

.logo{
    width: 300px;
    height: auto;
    margin-top: -130px;
}

h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    text-align: center;
    margin-top: -50px;
    margin-bottom: 20px;
}

input {
    background: #ffffff; 
    border: 2px solid #000000;
    border-radius: 14px;
    text-weight: bold;
    text-align: center;
    height: 50px;
    width: 200px;
    padding-left: 20px;
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    color: #32CD32;
    opacity: 0.7;
}

.input-container{
    display: flex;
    gap: 62px;
}

button {
    background: #187406;
    box-shadow: 0px 18px 40px rgba(174, 195, 70, 0.35);
    border-radius: 10px;
    width: 142px;
    height: 52px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 36px;
    margin-top: 40px;
    border: 2px solid #000000;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    border: 2px solid #32CD32;
    box-shadow: 0px 0px 15px #32CD32;
    color: #ffffff; 
    opacity: 0.9;
}

button:active {
    opacity: 0.8;
}

footer {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;      
    left: 0;
}

.input-result {
   
    background: #ffffff; 
    border: none;
    border-radius: 10px;
    color: #32CD32;
    border: 2px solid #000000;
    font-size: 30px;
    text-weight: bold;
    text-align: center;
    padding: 10px;
    width: 100px;
    margin-top: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    outline: none;
}

footer p {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.5;
}


@media screen and (max-width: 900px) {
    .logo {
        width: 200px;     
        margin-top: 50px;
    }

    h2 {
        font-size: 24px;  
        margin-top: 0;    
    }

    .input-container {
        flex-direction: column;
        gap: 20px;             
        align-items: center;
    }

    input {
        width: 100%;      
        max-width: 250px; 
    }

    button {
        width: 200px;     
        margin-top: 30px;
    }

    footer {
        position: relative;
        bottom: 0;
        margin-top: 100px;
        padding-bottom: 20px;
    }
}