@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

@font-face {
    font-family: 'AxolotlCute';
    src: url('../assets/fonts/Montserrat-VariableFont_wght.ttf') format('ttf'),
         url('../assets/fonts/Montserrat-VariableFont_wght.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WaterLife';
    src: url('../assets/fonts/ComicNeue-Regular.ttf') format('ttf'),
         url('../fonts/ComicNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #2E86AB;     
    --secondary-color: #48BF91;
    --accent-color: #70CFEF;      
    --dark-color: #1C3144;        
    --light-color: #E9F6FF;      
    --text-dark: #1A2A36;         
    --text-light: #FFFFFF;        
}

body {
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  background-image: url('../assets/mybluebackground.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Roboto Slab', georgia, serif;
  color: #1A2A36;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-content {
  width: 80%;
  margin: 0 auto 30px auto;
  padding: 20px;
  border: 2px solid #48BF91;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(233, 246, 255, 0.9);
  box-sizing: border-box;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  border: 3px solid #2E86AB;
  border-radius: 50%;
  padding: 5px;
  box-sizing: border-box;
}

.axolotl-title {
  margin: 10px 0 5px 0;
  padding: 10px;
  border-bottom: 4px solid #70CFEF;
  width: 80%;
  display: block;
  box-sizing: border-box;
  text-align: center;
}

.axolotl-subtitle {
  margin: 0 0 20px 0;
  padding: 5px;
  display: block;
  box-sizing: border-box;
  width: 70%;
  text-align: center;
}

.image-caption {
  margin: 10px 0;
  padding: 5px;
  font-size: 0.8em;
  width: 80%;
  display: block;
  box-sizing: border-box;
  text-align: center;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 25px;
  border: 3px solid #2E86AB;
  border-radius: 10px;
  display: block;
  box-sizing: border-box;
  background-color: rgba(233, 246, 255, 0.9);
}

.nature-box, #color-variation-box {
  margin: 20px 0;
  padding: 15px;
  border: 2px dashed #48BF91;
  border-radius: 8px;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

#behavior-highlight {
  margin: 30px 0 10px 0;
  padding: 20px;
  border: 4px solid #70CFEF;
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background-color: rgba(112, 207, 239, 0.2);
}

.footer-box {
  width: 80%;
  margin: 30px auto 0 auto;
  padding: 15px;
  border-top: 3px solid #1C3144;
  display: block;
  box-sizing: border-box;
}

ol {
  margin: 10px 0;
  padding-left: 30px;
  display: block;
  box-sizing: border-box;
  width: 90%;
}

li {
  margin: 5px 0;
  padding: 3px;
  display: list-item;
  box-sizing: border-box;
}

a {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 5px;
  border-bottom: 1px solid #2E86AB;
  box-sizing: border-box;
}

hr {
  width: 90%;
  height: 2px;
  margin: 25px auto;
  border: none;
  background-color: #1C3144;
  display: block;
  box-sizing: border-box;
}