* {
    box-sizing: border-box;
}
body.background{
    background-color: #241f1f;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

body {
    width: 97%;
    margin: auto;
}
section, aside, header {
    padding: 0.5rem;
}
img, video, embed {
    max-width: 98%;
}
header h1{
    text-align: center;
    color: #f1f1f1;
}
article h2{
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.15); 
    border-radius: 8px;
    width: fit-content;
    padding: .5rem;
    margin: 0 auto;
}

article p{
    text-align: center;
    color: #9b9b9b;
    background-color: rgba(56, 56, 56, 0.95); 
    padding: 1rem;
    border-radius: 2px;
    width: fit-content;
    margin: .5rem;
    
}

.site-footer {
  display: flex;
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem;
}

.footer-logo img {
  width: 50px;
  height: auto;
}
/* default navigation values */
nav {
    display: flex;
    flex-direction: column;
}
nav a {
    flex: 100%;
    margin: 0 5px;
    padding: .5rem;
}
.logo-container{
    width:95%;
    margin: auto;
    display:flex;
    flex-direction: row;
    margin-top: .5rem;
    margin-bottom: 1rem;
}
.logo img{
    justify-content: flex-start;
    width: 30%;
    height: auto;
    align-items: center;
}
.propertyslogen{
    color: #f3f3f3;
    text-align: center;
}
/* medium screen */
@media screen and (min-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        max-width: 75rem;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    nav, header {
        order: -1;
    }
    nav {
        flex-direction: row;
    }
    nav a {
        flex: auto;
    }
    article {
        flex: 50%;
    }
    aside, section {
        flex: 100%;
    }
    section p {
        column-count: 2;
        column-gap: 20px;
        column-rule: 1px solid rgb(255, 105, 0);
    }
}

/* large screen */
@media screen and (min-width: 1200px) {
    article {
        flex: 35%;
    }
    aside {
        flex: 30%;
    }
}