@font-face {
    font-family: "PlaypenSans";
    src: url(Fonts/PlaypenSans-VariableFont_wght.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: black;
    text-decoration: none;
}

body{
    background-color: rgb(231, 231, 231);
    font-family: "PlaypenSans";
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    height: 150px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.wrapper{
    width: 1200px;
    margin: 0 auto;
}

.main{
    display: flex;
}

.main_left{
    margin-right: 20px;
    width: 100%;
}

.main_right{
    width: 50%;
}

.card{
    background-color: white;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.card__img{
    height: 300px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.card__img--small{
    height: 150px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.card__img--smalest{
    height: 100px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}
.links{
    display: flex;
    align-items:center ;
    justify-content: flex-start;
    font-size: 30px;
    padding-top: 15px;
}

.icon{
    color: rgb(231, 231, 231);
    margin-right: 20px;
    transition: 0.3;
}
.icon hover


.footer p{
    text-align: center;
}