.price-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.price {
    width: 40ch;
    height: 25ch;
    border: 5px solid black;
    border-radius: 5px;
    text-align: center;
    margin: auto;
    padding: 20px;
    vertical-align: middle;
}

.price:hover {
    background-color: rgba(255, 72, 72, 0.465);
}

.platform-container {
    margin-top: 50px;
}

.platform {
    padding: 20px;
    font: inherit;
    font-weight: 500;
    border: 2px solid black;
    border-radius: 5px;
    margin: 0 0 15px 5px;
    box-shadow: 5px 5px grey ;
    text-decoration: none;
}

.platform:hover {
    background-color: rgb(119, 255, 119);
}

.platform:active {
    box-shadow: none;
}

.note {
    margin-top: 40px;
}