@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@600;800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
}

body{
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-card{
    width: 450px;
    height: 600px;
    border: 3px black solid;
    border-radius: 25px;
    background-color: #FFFFFF;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    z-index: 1;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.card-content-img{
    width: 100%;
    height: 45%;
    border-radius: 25px;
    background-image: url(../assets/images/illustration-article.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.card-content{
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
}

.learning{
    padding: 8px;
    width: 30%;
    height: auto;
    border-radius: 5px;
    background-color: hsl(47, 88%, 63%);
    font-weight: 800;
    display: flex;
    justify-content: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.publisched{
    margin-bottom: 30px;
}

.html-foundation{
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 50px;
}

.these{
    color: #6d6d6d;
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.profil-img img{
    width: 40px;
    height: auto;
}

.profil-name p{
    font-weight: 800;
    margin-left: 15px;
}

.card-background{
    width: 450px;
    height: 600px;
    border: 3px black solid;
    border-radius: 25px;
    background-color: black;
    margin-left: 20px;
    margin-top: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

