/* * { outline: 1px dotted #ccc;}   */
:root {
    --clr-orange: #f76337;
}  

@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/outfit-v14-latin-200.woff2') format('woff2');
}
/* outfit-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v14-latin-300.woff2') format('woff2');
}
/* outfit-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v14-latin-regular.woff2') format('woff2');
}
/* outfit-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/outfit-v14-latin-900.woff2') format('woff2');
}
html {
    padding: 0;
    margin: 0;
    text-align: center;
}
body {
    background-color: #141e24;
    margin: 0;
    padding: 0;
    color: #888;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
}
a, a:link, a:active, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
}
h1,h2,h3,h4,h5 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-align: left;
}
.wrap {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;

}
.logo {
    text-align: left;
    font-size: clamp(2.0625rem, 1.8234rem + 1.1957vw, 2.75rem);
    font-weight: 900;
    margin-block: 1.5rem;
}
    .logo span {
        color: var(--clr-orange);
    }
    .logo a, .logo a:hover {
        color: var(--link-bg-hover);
    }
h1 {
    font-size: 1.2rem;
}    
main {
    clear: both;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;    
    padding-top: 1rem;
    font-size: 0;
}
    .content {
        background-color: #252e33;
    }
    .content img {
        object-fit: cover;
        /* height: max(120px, 10vh); */
        aspect-ratio: 4/3;
    }
    .content.description {
        padding: 0 .5rem 1rem .5rem;
    }
    .content.title {
        font-size: 2rem;
        color: var(--clr-orange);
        font-weight: 400;
        padding: 0;
        line-height: 1;
        padding-top: .5rem;
        /* padding-left: .5rem; */
    }
    .content.domain {
        display: inline-block;
        background-color: #a1cd43;      
        font-size: 1rem;  
        padding: .25rem .6rem;
        color: #fff;
        /* width: auto; */
        border-radius: .12rem;
        margin-block: .5rem;
    }
    .content p {
        color: #888;
        margin: 0;
        font-size: 1rem;
    }  
footer {
    height: 3rem;
}    