@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*, *:before, *:after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    background: #b1b8cb;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/*****    container     *****/
.container {
    width: 500px;
    padding: 10px;
    margin: 10px;
}

/*****    section     *****/
.section {
    width: 100%;
    height: 350px;
    position: relative;
}

/*****    shape     *****/
.shape {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shp {
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shp-1 {
    width: 250px;
    height: 100px;
}

.shp-2 {
    width: 100px;
    height: 250px;
}

/*****    fiuce     *****/
.fiuce {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
}