*,
::after,
::before {
    user-select: none;
    margin: 0;
    padding: 0;
    outline: none;
    /* outline: 1px solid red; */
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.container {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.link,
.link:active,
.link:hover {
    color: #000;
    text-decoration: none;
}

body {
    height: 100vh;
    background: url(/img/fon.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sec-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec-flex-logo {
    margin-top: 40px;
    position: relative;
    height: 100px;
}

.sec-flex-logo img {
    height: 100%;
}

.sec-flex-boxs {
    margin-top: 20px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 150px);
    grid-auto-rows: 100px;
    align-items: center;
    justify-content: center;
}

.sec-flex-box {
    width: 100%;
    height: 100%;
    background-color: aqua;
    display: flex;
    align-items: center;
    border-radius: 20px;
    justify-content: center;
    transition: transform .1s;
}

.sec-flex-box:active {
    transform: scale(1.05);
}

.sec-flex-box span {
    position: relative;
    width: 70px;
    height: 70px;

}

.sec-flex-box span img {
    width: 100%;
}

.sec-flex-box1 {
    background-color: #4664ca;
}

.sec-flex-box2 {
    background-color: #74d5f8;
}

.sec-flex-box3 {
    background-color: #dc1d52;
}

.sec-flex-box4 {
    background-color: green;
}

.sec-flex-boxs-iframe {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 5;
    border-radius: 20px;
    overflow: hidden;
    border: 0;
    height: 100%;
    width: 100%;
}

.sec-flex-boxs-iframe iframe{
    width: 100%;
    height: 100%;
}