
html{
    scroll-behavior: smooth;
}

body{
    background-color: darkslategray;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;

}

nav{
    background-color: darkgrey;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 5px;
    border-radius: 10px;
}

a.button{
    display: inline-block;
    background: darkblue;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;

 }

header{
    text-align: center;
}
a{
    color: darkblue;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    padding: 5px;
    margin-bottom: 10px;

}

a:hover{
    color: cyan;
}

img{
    max-width: 250px;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
    height: auto;
}

h1 {
    font-size: 35px;
    margin-bottom: 15px;
}

h2 {
    font-size: 25px;
    margin-bottom: 15px;
    text-align: center;
}
h3{
    font-size: 20px;
    margin-bottom: 5px;
    text-align: left;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px){
body{
        padding: 20px;
    }
nav{
    flex-direction: row;
    gap: 10px;
}
h1{
    font-size: 32px;
}
h2{
    font-size: 26px;
}
img{
    max-width: 200px;
    margin: auto;
}
section{
    margin-bottom: 40px;
}
}