@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");

:root {
  --primary-blue: #356fb6;
  --dark-blue: #263652;
  --white: #fefefe;
  --black: #292728;
  --gray-blue: #aec0e0;
  --light-blue: #d3dcee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a.active {
  text-decoration: underline;
  color: var(--primary-blue);
  font-weight: 700;
}

.scripted {
  font-family: "Italianno", cursive;
}

.colored {
  color: var(--gray-blue);
  font-weight: 500;
}

.bolded {
  font-weight: 700;
}

div.in-progress {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--dark-blue);
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100dvh;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

main {
  flex: 1;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  body,
  html {
    display: flex;
    overflow-x: hidden;
    height: auto;
    max-width: 1080px;
    width: 100svw;
  }

  div.in-progress {
    font-size: 1rem;
    align-items: flex-start;
    text-align: center;
    height: auto;
    padding-block: 5rem;
  }
}
