@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
  box-sizing: border-box;
  margin:0;
  padding:0;
}

body{
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding:0;
}

section {
  padding: 20px 20px;
  margin: 50px;
}

h1{ 
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
}

.container{
  max-width:1200px;
  margin:0 auto;

}

.nav-list {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  align-items:center;
  flex-grow:1;
  justify-content:space-between;
}

.nav-list a {
  text-decoration: none;
  background: #415D63;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  transition: 0.3s;
}

.nav-list a:hover {
  background: #548058;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

ul {
    list-style-type: circle;
    padding-left: 0;
}


.custom-outline {
  list-style-type: upper-roman;
}

.custom-outline ol {
  list-style-type: upper-alpha;
  padding-left: 20px;
}

.link-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;

}

.button1 {
  color: #2a458a;
  text-decoration: underline;
}
.button1:hover {
  color: #78c43a;
}

.button2 {
  background: #62cf99;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}
.button2:hover {
  background: #4e999c;
}

.button3 {
  border: 2px solid #963ae1;
  padding: 10px 20px;
  text-decoration: none;
  color: #963ae1;
   border-radius: 25px;
}
.button3:hover{
  background: #ce87e8;
  color: white;
}

.button4 {
  background: #b86b3c;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
}
.button4:hover {
  opacity: 0.8;
  color: #572607;
}

.button5{
  background: #3ec7e6;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.button5:hover{
    box-shadow: 0 0 15px rgba(89, 121, 129, 0.6);
    transform: translateY(-2px);
}
