*,*::before, *::after{
    padding:0;
    margin:0;
    box-sizing:border-box;
}

body{
    background:#fff;
    font-family:"Merriweather", serif;
    color:#333;
}

.hero{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:URL("img/sky.png")no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    height:600px;
    margin-bottom:40px;
}

.topnav{
    display:flex;
    width:100%;
    justify-content:space-between;
    align-items:center;
    padding:5px 50px;
    background:#fff;
    position:sticky;
    top:0;
    z-index:10;
}

.nav{
    display:flex;
    justify-content:center;
    background:transparent;
    list-style-type:none;
}

.nav a{
    text-decoration:none;
    padding:5px 15px;
    color:#000;
    font-family:"Roboto",sans-serif;
    text-transform:uppercase;
    font-size:14px;
}

.nav a:hover{
    background:teal;
    color:#fff;
}

.container{
    display:flex;
    justify-content:columns;
    align-items:flex-start;
}

.page{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    grid-gap:20px;
    justify-content:start;
    align-items:start;
    background:#fff;
    width:90%;
    margin:auto;
    padding:10px;
    min-height:100vh;
    margin-bottom:50px;
}

.page div{
    background:#fff;
    height:auto;
}


.myDiv{
    float:right;
}

#targetDiv{
    width:100%;
    height:auto;
    background:transparent;
    margin-bottom:10px;
}


.space{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px 0;
    height:50px;
}


.sidebar{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

ul.side{
    list-style-type:square;
    padding-left:10px;
}

ul.side li{
    position: relative;
    padding:5px;
    font-family:"Roboto", sans-serif;
    font-size:16px;
    text-transform:uppercase;
    color:#290003;
}

ul.side li:hover{
    background:yellow;
    display:inline-block;
    cursor:pointer;
}

ul.side li::before {
  content: "";
  color: red;
  font-size:10px;
  position:absolute;
  left: 0;
  top: 0;
}

.fig{
    width:100%;
    height:auto;
    max-width:100%;
    margin-bottom:40px;
}







.footer{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
    background:transparent;
}


ul{
    list-style-type:none;
    padding:0;
    margin-bottom:20px;
}

ul li{
    position: relative;
    padding:10px 20px;
}

ul li::before {
  content: "•";
  color: red;
  font-size:30px;
  position: absolute;
  left: 0;
  top: 0;
}
    


/*-----Typography----*/
p{
    font-family:"Merriweather", serif;
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-bottom:30px;
}

p.ad, .smallprint, .info, .foot{
    font-family:"Roboto", sans-serif;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#666;
    
}


h1,h2,h3,h4,h5,h6{
    font-family:"Roboto",sans-serif;
    color:#000;
    margin:0;
    padding:0;
}

h1{
    font-size:50px;
    letter-spacing:-1px;
    margin-bottom:20px;
}

h2{
    font-size:30px;
}

h3{
    font-size:20px;
}

h3.box{
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:3px;
    background:teal;
    padding:10px 20px;
    display:inline-block;
    color:#fff;
    border-radius:3px;
}

h3.box:hover{
    background:yellow;
    color:#000;
    cursor:pointer;
}

h4{
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:red;
}

span{
    font-size:120px; /* Adjust size as needed */
    float: left;
    line-height:1; /* Prevents extra space above the letter */
    margin-right:10px; /* Space between the drop cap and the text */
    font-weight:normal; /* Optional: make it bold */
    color: #ff0000;
    margin-top:10px; /* Optional: change color */
}


img{
    max-width:100%;
    height:auto;
    object-fit:contain;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:0;
    padding:10px 30px;
    margin-bottom:30px;
    display:inline-block;
    background:teal;
    font-family:"Roboto", sans-serif;
    font-size:18px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#fff;
    cursor:pointer;
}

button:hover{
    background:#000;
}

