/* simple reset rule to set page defaults*/
* {
    margin: 0;padding: 0;border: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; /*16px *.625= 10px*/

    --color-bg1: #948e91;
    --color-bg2: #EFC88B;
    --color-fn1: rgb(121, 121, 47);
    --color-accent1: #cf5c36;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background-color: var(--color-bg2);
    color: var(--color-fn1);
    font-size: 1.4rem;
}

section#topsection{
    min-height: 150px;
    margin: 50px;
    display: flex;
    background-color: var(--color-fn1);
    padding: 2%;
}

div#textbox{
    background-color: #EEE;
    height: 250px;
    width: 50%;
    transform: translate(100px,75px);
    margin-left: -100px;
    color: black;
    text-align: center;
}

div#image{
    background-color:rgb(107, 77, 38);
    width: calc(50% + 100px);
    background-image: url(/images/pripyat.jpg);
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
}

div#textbox h1{
    text-align: center;
    font-weight: bold;
    margin: 15px,0px;
    font-size: 35px;
}

div#textbox h1 + p{
    text-align: center;
    color:rgb(15, 15, 15);
}

div#textbox p{
    margin-top: 12px;
    font-size: 1.2em;
    margin: 1em;
    line-height: 1.5em;
    text-align: left;
}

a.buttonlink{
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--color-accent1);
    color: black;
    border-radius: 10%;
}






