.logo {
    position: fixed;
    top:.5rem;
    right:.5rem;
    z-index: 200;
    max-width: 8rem;
    background:white;
    padding:1rem;
    box-shadow: 0 0 1.5rem -.5rem rgba(0,0,0,0.5);
    border-radius: 1rem;
}

.main-image {
    max-width: calc(var(--content-max-width) * 1.4);
    margin:auto;
}

.main-image img {
    aspect-ratio: 2/1;
    width:100%;
    box-shadow: 0 .15rem 1rem -.5rem black;
}

main {
    text-align: center;
}

.title-area h1,
.title-area p {
    color:var(--background-color);
}

.section-with-bg {
    background-image: url('../images/desktop/webdesign/websites.webp'), url('../images/desktop/webdesign/websites.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
}

.section-with-bg .content {
    background:var(--background-color);
    padding:1rem;
    box-shadow: 0 .15rem 1.5rem -.2rem black;
    box-sizing: content-box;
}