@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 {
  --base-color: #ffffff;  
  --text-color: #000000;
}

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

html {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text-color);
    text-decoration: none;
    
}

body {
    padding: 1em;
    background-color: var(--base-color);
}

h1 {
    margin-bottom: 3pt;
    font-size: 12;
    font-weight: 600;

}

p {
    font-size: 10pt;
    font-weight: 400;
    padding-left: 3pt;
    line-height: 1.5;
}

a{
    color: var(--text-color);
}

a:link {
    text-decoration: none;

}

a:hover {
    text-decoration: underline;
}

section {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.center {
position: absolute;
width: 300px;
height: 300px;
margin: auto;
top: 0;
right: 0;
bottom: 100px;
left: 0;
}