
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

*{
    background:#fff;
    font-family: 'inter', sans-serif;
    text-align: left;
    justify-content: center;
}

body{
    height: auto;
    max-width: 100%;
    width: min(90ch, 100%);
    margin: 0 auto;
    padding: 0 1rem;
}

.menu{
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 0.75rem;
    border-bottom: 1px solid #bbb;
    margin-left: -34rem;
}

.menu > *:first-child {
    margin-right: 20rem;
}

@media (width <= 480px){
    .menu{
        gap: 0.5rem;
        padding: 0.1rem;
        font-size: small;
    }
    h1{
        font-size: medium;
    }
}

p {
    text-align: left;
    
}

.footerlist{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    border: 4rem;
    margin: 1rem;
    padding: 0.75rem;
    border-top: 1px solid #bbb;
}

@media (width <= 480px){
    .footerlist{
        gap: 0.5rem;
        font-size: small;
    }
}

.menulink a:link{
    color:  gray; 
    text-decoration: none;
}

.menulink a:visited{
    color: gray; 
}

.footerlink a:link{
    color: gray;
    text-decoration: none;
}

.footerlink a:visited{
    color: gray; 
}

.form{
    text-align: center;
    flex-direction: column;
    gap: 20px;
}

#contentcontainer{
    width: 60%;
    margin: 0 auto;
    display: block;
    text-align: left;
    max-width: 100%
}

ul {
    text-align: left;
    padding-left: 1.5rem; list-style-position: inside;
    
 }

img{
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;

}

form{
    display: flex;
    flex-direction: column;
    border: box;
    width: 60%;
    text-align: center;
    margin: 0px auto;
    max-width: 100%
}

input{
    border-radius: 7px;
    margin: 5px auto;
    width: 70%;
}

textarea{
    border-radius: 7px;
    margin: 5px auto;
}

#formsubmit{
    width: 20%;
    display: flex;
    text-align: center;
}

label{
    display: inline-block;
    width: 70px;

}

fieldset{
    border-radius: 10px;
}

@media (max-width: 420px){
    p {
        font-size: small;
    }
    
    
    
}

.blogauthor, .blogdate{
    font-size: small;
}

#tpbutton1, #tpbutton2, #tpbutton3, #tpbutton4{
    display: none;
}

.image-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.image-container img {
  width: 75%;
  max-width: 450px; /* Change this to the desired consistent size */
  height: auto; /* Maintains aspect ratio */
  display: block;
  border-radius: 8px; /* Optional: rounded corners */
}