/*#2E3440*/


body {
    font-family: "IBM Plex Sans", sans-serif;
    color: #222222;
    background: white
;
}

h1, h2, h3 {
    font-family: "Space Grotesk", sans-serif;
    color: #222222;
}

.container {
    display: flex;
    margin-left: 325px;
    margin-right: 325px;
    margin-top: 70px;
}

.left {
    flex: 1;
    background-color: white;
    text-align: left;
    /*border: 2px solid black;*/
    /*border-radius: 5px;*/
    margin-right: 80px;
}

.right {
    flex: 3.5;
    background-color: white;
    text-align: left;
    /*border: 2px solid black;*/
    /*border-radius: 5px;*/
}

a,
a:visited,

a:active {
    text-decoration: none;
    color: blue;
}

a:hover {
    text-decoration: underline;
    color: #0077ff;         /* choose any hover color you want */
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 50px; /* space between items */
}

