/* Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

h1 {color:whitesmoke}
h2 {color:limegreen}
h3 {color:lightgreen}

a         {color: cyan}
a:visited {color: cyan}
a:hover   {color: darkcyan}

body{
    background-color: black;
    margin: 0px;
    text-align: center;
}

#overlay {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    background: rgba(0, 0, 0, 0.85); /* gray background */
    padding: 15px;
    border-radius: 20px;
    font-family: sans-serif;

    overflow: auto;
    max-height: fit-content;
    width: 80%;
    max-width: 900px;
}

img{
    width: 100%;
}

section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid2-1{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.grid1-2{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.bold{
    font-weight: 600;
}