@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Reenie+Beanie&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    padding: 5vw;
    background-color: #f9f9f9;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

h1 {
    font-size: clamp(40px, 8vw, 160px);
    white-space: nowrap;
    font-weight: 200;
}

h2 {
    font-size: clamp(20px, 5vw, 100px);
    margin-top: -0.1em;
    font-weight: 600;
    line-height: 0.9;
}

h3 {
    font-size: clamp(15px, 3vw, 100px);
    margin-top: 0.5em;
    color: blue;
    font-weight: 400;
}

ul {
    text-wrap: balance;
    margin: 25px 0 25px 0;
    padding: 0;
    list-style: none;
    font-family: "Reenie Beanie", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(30px, 4vw, 100px);
}

ul li {
    margin-bottom: 7px;
    line-height: 0.8;
}

img {
    width: 100%;
    border-radius: 10px;
}

a {
    text-decoration: none;
}