:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}
  
body{
  font-family: 'Inter';
  font-weight: 900;
  font-size: 12pt;
  color: black;
  background-color: white;
}

.container{
  display: grid;
  grid-template-columns: 20% 80%;
  border: red;
}
p{
  padding-top: 0%;
  margin: 0%;
  padding-right: 3px;
}
img{
  display: flex;
  max-width: 100%;
  padding: 0px;
}

a {
  color: black;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 12pt;
  padding: 0px;
}

a:hover {
  color: red;
  transition: 0.4s;
}
