@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1, h2, h3{
    font-family: "Inter", sans-serif;
    text-align: center
}
h1{
    font-size: 50px;
}
h2{
    font-size: 30px;
}
h3{
    font-size: 20px;
}
body div:not(div div){
    height: 500px;
    width: 90%;
    border: 2px dashed black;
}
div div{
    background-color: #7f71ff;
    width: 100px;
    height: 100px;
    position: absolute;
}