*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    font-family: Glory;
}
body{
    background-color: #FBFBFB;
    
}
.main{
    background-color: #323232;
    width: 480px;
    height: 323px;
    margin: 0 auto;
    top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    
}
p{
    color: #FBFBFB;
}

.inch-to-meter{
    margin-bottom: 30px;
    font-size: 40px;
}
.enter-number{
    left: -98px;
    font-size: 18px;
}

.result{
    background-color: #28A745;
    padding: 15px 90px;
    margin-left: 15px;
    margin-top: 10px;
    width: 70%;
    text-align: center;
}
input , button{
    padding: 15px 100px;
    margin: 10px;
    width: 100%;
}
input{
    background-color: white;
    color: #323232;
    font-size: 20;
    font-weight: bold;
}
button{
    background-color: #007BFF;
    color: #FBFBFB;
    font-size: 21;
}

@media screen and (max-width: 600px ) {
    .main {
        width:80% ;
        top:130px;
    }
    form{
        width: 80%;
    }
    input , button {
        width: 100%;
        padding:10px 20px ;
    }
    input{
        color: black;
    }
    .result{
        margin: 0;
        margin-top: 5px;
        padding: 10px ;
        width: 80%;
        left: 10px;
    }
    .result>p{
        font-size: 10px;
        text-align: center;
    }
    .inch-to-meter{
        font-size: 20px;
    }
    .enter-number{
        width: 50%;
        margin-left: 70px;
        font-size: 10px;
    }

    
}
