/** @format */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.5px;
    box-sizing: border-box;

    user-select: none;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blockContainer {
    height: 455px;
    width: 345px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;

    background-color: #ffffff;
}

.blockContainer > .blockRow {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.blockRow > div {
    height: 95px;
    width: 95px;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: solid 1px #929292;
    box-shadow: 0px 0px 7px 6px #0000000a;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.15s;
}

.blockRow > div:hover {
    box-shadow: 0px 0px 10px 8px #00000010;
    scale: 1.03;
}

.blockRow > div > img {
    height: 50%;

    position: absolute;
    margin-bottom: 15%;
    opacity: 0.8;
}

.blockRow > div > p {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: #3a3a3a;
}
