/* © 2024 Max McCarthy */

:root {
    --background-color: rgb(40,40,40);
    --trim: rgb(150, 150, 150);
    --main: rgb(200, 200, 200);
    --lowlight-color:rgb(32, 84, 117);
    --highlight-color:rgb(64, 167, 234);
}

@font-face {
    font-family: 'Montserrat';
    src: url("/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}

body {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3em;
    color: var(--main);
    background-color: var(--background-color);
}

a {
    font-size:24px;
    width:40px;
    height:40px;
    line-height:40px;
    display:inline-block;
    text-align:center;
    margin:0 8px;
    color:inherit;
    opacity:0.75;
}

a:hover {
    opacity:0.9;
}

img {
    height: 100%;
     width: 100%;
}

.copyright {
    margin-top:15px;
    text-align:center;
    font-size:13px;
    color: var(--main);
    margin-bottom:0;
}
