html, body {
    color: #5a5c57;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: 300;
    font-style: normal;
    height: 100%;
    background-color: #fbf8f3;
}

a[disabled], input[disabled], button[disabled], textarea[disabled] {
    cursor: not-allowed !important;
    opacity: .5 !important;
}

a:focus, input:focus, button:focus, textarea:focus {
    outline: none;
}

a {
    font-size: 1rem;
    color: #cf9b8d;
    text-decoration: none;
    transition: all .3s ease;
}

a.btn {
    font-size: 1.25rem;
    color: #cf9b8d;
    padding: 0.75rem 1rem;
    border: 1px solid #f0d8d2;
    border-radius: 0.25rem;
    background-color: #faf1ef;
}

a:hover {
    color: #5a5c57;
}

a.btn:hover {
    color: #FFFFFF;
    background-color: #daa38f;
}

a:focus {
    text-decoration: none;
}

a.insta svg {
    inline-size: 2rem;
}


img {
    max-width: 80%;
    height: auto;
    border: 0;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-weight: 300;
}

h1, h2, h4 {
    font-size: 1.75rem;
    padding-bottom: 1rem;
}

h2 {
    font-size: 1.25rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    color: #cdb5b4;
    font-weight: 100;
    padding-top: 2rem;
}

.ds h1, .ds h2, .ds h3, .ds h4 {
    padding: 1rem 0;
}

p {
    padding: 2rem 0;
}
.impr p,.ds p  {
    padding: 0 0 1rem;
}

p.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ds { 
    padding-top: 2rem;
    width: 80%;
    margin: 2rem auto;
 }

 .flex-container > div {
    min-width: 40%;
 }

.flex-container > div.item2 {
    text-align: center;
}


@media screen and (min-width: 1200px) {
    html, body {
        font-size: 14px;
    }
    .flex-container { 
        flex-direction: row;
    }
    .flex-container > div { 
        padding: 2rem; 
    }
    .flex-container > div.item2 {
        text-align: left;
    }
    p.links {
        max-width: 320px;
    }
}

.flex-container > div {
    position: relative;
    animation-name: fadeIn;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.flex-container > div.item1 {
   -webkit-animation-delay:0.5s;
   animation-delay:0.5s;
}

.flex-container > div.item2 {
   -webkit-animation-delay:1s;
   animation-delay:1s;
}

@keyframes fadeIn{
    0% { opacity:0; top: 50px;}
    100% { opacity:1; top: 0px; }
}

@-webkit-keyframes fadeIn {
    0% { opacity:0; top: 50px;}
    100% { opacity:1; top: 0px; }
}

