@font-face {
	font-family: "REM";
	src: url(./fonts/REM-VariableFont_wght.ttf);
  }

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "REM", 'Roboto', sans-serif;
}

.container{
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px;
    justify-content: space-around;
    background-color: #f7f8ff;
}

li{
    list-style: none;
    border: 2px solid grey;
    border-radius: 10px;
}

img{
    width: 200px;
    height: 400px;
    object-fit: cover;

}