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

:root {
    --anchor-color: #4E80EE;
    --bg-color: #F8FAFC;
    --header-color: #FFFFFF;
    --text-color: #030616;
    --line-color: #D2D5DA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  color: var(--text-color);
}

body {
  background-color: var(--bg-color);
  font-size: 1rem;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

a {
    color: var(--anchor-color);
    text-decoration: none;
    cursor: pointer;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 4rem;
    
    background-color: var(--header-color);
}

.header_title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    
    padding: 1rem auto;
    margin-top: 4rem;
    gap: 2.5rem;

    line-height: 30px;
}

.box_container {
    max-width: 600px;
    padding: 3rem auto;
    margin: 0 auto;
}

.box_subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.box_list {
    padding-left: 1.5rem;
    margin: 1.2rem auto;
}
.box_list li {
    margin-bottom: 0.5rem;
}

#line {
    width: 90%;
    max-width: 650px;

    border-top: 2px solid var(--line-color);
}

.footer {
    width: 90%;
    max-width: 900px;

    padding: 2rem 1rem;
    margin: 3rem auto 2rem;
    background-color: var(--header-color);
    
    font-size: 1rem;
    text-align: center;
    border-radius: 12px;
    
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
