/* CORE STYLES */
:root {
    --background: #fff; 
    --white: #fff;
    --writing: #444;
    --black: #000; 
    --charcoal: #222;
    --green: #879b2f; 
    --alternate: #28487d; 
    --alternate2: #4e7ac2; 
    --grey: #627b7e; 
    --lightgrey: #EFF1F2;
    --lightgrey2: #e0e0e0;
    --transgrey: rgba(30,30,30, 0.8);
    --nearlywhite: #f0f0f0;
    --transred: rgba(237, 28, 36, 0.9);
    --halfgrey: rgba(30,30,30, 0.05);
    --transwhite: rgba(255,255,255,0.7)
  }



body{
    background-color: var(--background);
    color: var(--writing); 
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    position: relative;
    display: grid;
    justify-content: center;
    align-content: center;
}
a{
    color: var(--alternate)
}
img{
    border: 0;
    max-width: 100%;
    display: block;
    margin: auto;
}
