@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Montserrat:wght@100;300&family=Open+Sans:wght@400;500;600&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #1b2a2c;
    
}
.top-center{
    display: block;
    text-align: center;
    margin: 15px 0;
}
.top-center h2{
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    color: #ffff;
    margin-bottom: 10px;
    padding: 0 15px;
}
.top-center p{
    font-size: 1.2rem;
    color:#d9e6eb77 ;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    padding: 0 15px;
}

/*Cards*/

.main{
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
}

.content{
    border-radius: 5px;
    min-width: 300px;
    box-sizing: border-box;
    margin: 25px 20px; 
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center; 
    background-color: #31424533;
    border: 1px solid rgba(255, 255, 255, 0.068);
    border-radius: 5px;
    max-width: 300px;
    box-sizing: border-box;
    margin: 25px 20px;
    box-shadow:  0 0 1em rgba(0, 0, 0, 0.318);
    position: relative;
    transform: translateY(20px);
    transition: 0.5s;
}
.card:hover{
    transform: translateY(0px);
    
}
.card img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin:10px;
}
.card h3{
    color: #ffff;
    font-size: 1.8em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-bottom:1px solid rgba(255, 255, 255, 0.079) ;
    margin: 10px 0;
}
.card .skil{
    color: rgba(245, 222, 179, 0.7);
    font-size: 1.4em;
}
.card p{
    padding:0 10px;
    margin-bottom: 15px;

}

.btn{
    color: black;
    background-color: rgb(255, 140, 0);
    padding: 8px 18px;
    margin: 10px 0; 
    box-sizing: border-box;
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 1em rgba(255, 217, 0, 0.279);
    cursor: pointer;
}

.btn:hover{
    background-color: black;
    color:rgb(255, 140, 0) ;
    box-shadow:  0 0 1em rgba(0, 0, 0, 0.637);
}


footer{
    display: flex;
    text-align: center;
    justify-content: center;
    color: white;
}