@import url('https://fonts.cdnfonts.com/css/inter');

* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px;
    background-color: #50577A;
}

.offers {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer {
    width: 100%;
    color: white;
    height: 100px;
    display: flex;
    gap: 20px;
    box-sizing: border-box;
    align-items: center;
    padding: 10px 10px;
    background-color: #404258;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.offer .name {
    font-size: 125%;
}

.offer img {
}

.offer .price {
    color: lightgreen;
}