@import url(../fonds/fonds.css);
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
div {
    width: 640px;
    height: 256px;
    background-color: hsl(210, 100%, 34%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
div::before {
    content: "";
    width: 614px;
    height: 230px;
    border-radius: 50%;
    background-color: hsl(52, 97%, 52%);
    position: absolute;
    top: 13px;
    left: 13px;
}
div::after {
    content: "ikea";
    text-transform: uppercase;
    font-family: "futurapress";
    font-weight: bold;
    font-size: 12rem;
    color: hsl(210, 100%, 34%);
    z-index: 1;
}