@font-face {
    font-family: 'UbuntuSansMono';
    src: url(./fonts/UbuntuSansMono-Regular.ttf);
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'UbuntuSansMono';
    margin: 2rem;
}

.slogan {
    color: hsl(234 66% 35%);
}


ul {
    list-style: none;
    padding-left: 0;
}

.bold {
    font-weight: bold;
}

.walls-options {
    display: grid;
    
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.wall-container {
    border: 1px solid black;
    padding: 1rem;
    max-width: 500px;
    width: 100%;
    
    margin: 0 auto;
}

.wall-container figure {
    margin: 0;
}

.wall-container img {
    width: 100%;
    height: 300px;

    object-fit: contain;
    object-position: center;

    display: block;
}

.contacts {
    display: flex;
    flex-direction: column;
    
    font-weight: bold;
}

.contacts a {
    text-decoration: none;
    
    color: hsl(234 66% 20%);
    transition: color 0.5s ease;
}

.contacts a:hover {
    text-decoration: underline;
    color: hsl(234 66% 50%);
}

#screed-img {
    width: 100%;
    max-width: 960px;
    min-width: 320px;
    height: auto;
}