css new

css new

css new

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

body{

    padding: 0;

    margin: 0;

    background-color:#484848 ;

    font-family: 'Montserrat', sans-serif;

}

.container{

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 800px;

    height: 500px;

    border: 1px solid black;

    border-radius: 5px;

    background-color:#262626;

}


input{

    width: 120px;

}

 .info{

    display: inline;

    width: 150px;

    height: 20px;

    margin-right: 10px;

    background-color: white;

    border: 1px solid transparent;

    border-radius: 5px;

}

.pesrsonal-info{

    display:block;

    color: #d53369;

    padding:10px;

    margin: 10px;

    border: 1px solid black;

    border-radius: 5px;

}

.calcul{


    display:block;

    padding:10px;

    margin: 10px;

    border-radius: 5px;


}

.calcul table{

    border: 1px solid black;

    border-radius: 5px;


    align-items: center;

    width: 100%;

    color: #d53369;

}

.calcul td{

    width: 150px;

    margin: 10px;

    


}



.btn{

    position: relative;

    left:65%;

    top: 10%;

    transform: translate(-10%, -10%);

    padding: 8px;

    margin-top: 35px;

    font-size:20px ;

    background-color: #262626;

    border: 1px solid #616161;

    border-radius: 5px;


}





Report Page