*, *::before, *::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#fff;
}

.topnav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:10px 30px;
    position:sticky;
    top:0;
    z-index:50;
    margin-bottom:30px;
    border-bottom:1px solid #ccc;
}


.nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    list-style-type:none;
}


.nav ul li{
    padding:5px 10px;
    text-align:center;
}

.nav ul li a{
    display:inline-block;
    padding:5px 10px;
    font-family:"Roboto", sans-serif;
    color:#000;
    text-decoration:none;
    text-transform:uppercase;
    font-size:14px;
}

.nav ul li a:hover{
    color:#ffffff;
    background:teal;
}

.container{
    width:85%;
    background:#fff;
    display:flex;
    flex-direction:row wrap;
    justify-content:center;
    gap:10px;
    align-items:flex-start;
    margin:auto;
}

.container div{
    min-height:100vh;
    background:#fff;
    padding:10px;
}

.container div.left{
    width:300px;
}

.container div.center{
    width:700px;
}


.container div.right{
    width:300px;
}

#targetDiv{
    width:100%;
    height:auto;
    background:#fff;
    margin-bottom:50px;
}

img{
    max-width:100%;
    height:auto;
    width:100%;
    object-fit:content;
}

.fig{
    width:100%;
    height:auto;
   
    object-fit:content;
    margin-bottom:20px;
}


.footer{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:20px 0px;
    border-top:1px solid #444;
}

/*-----Typography------*/
p{
    font-family:"Lora", seif;
    font-size:18px;
    color:#333;
    line-height:1.4;
    margin-bottom:30px;
}

p.smallprint, p.info, p.foot{
    font-family:"Roboto", sans-serif;
    color:#555;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}


h1, h2, h3, h4, h5, h6{
    font-family:"Roboto", sans-serif;
    color:#000;
    line-height:0.95;
    margin-bottom:10px;
}

h1{
    font-size:70px;
}

h2{
    font-size:50px;
}

h3{
    font-size:20px;
}

h4{
    font-size:24px;
    text-transform:uppercase;
    color:teal;
    letter-spacing:1px;
}