/** @format */

@import url("https://fonts.googleapis.com/css2?family=BBH+Bartle&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: "BBH Bartle", 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;
    flex-direction: column;

    justify-content: space-evenly;
    align-items: center;
}

.container {
    height: 80vh;
    max-height: calc(80vw / (4 / 3));
    aspect-ratio: 4 / 3;
    background-color: #1f1f1f;

    position: relative;
}

.text {
    padding: 20px 30px;
    background-color: #1f1f1f;
    color: #ffffff;
}

.container > div {
    height: 10%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;

    font-size: 2.23rem;
    color: #1f1f1f;

    position: absolute;
    top: 100px;
    left: 100px;
}
