@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html, body {
  padding: 0;
  margin: 0;
  background-color: white;
  font-family: "Montserrat", sans-serif;
}

p a {
  color:rgb(66, 66, 66);
  display:inline;
  font-weight: bold;
}

.text--title{
    font-size:35px;
}

.text--content{
    font-size:20px;
}

.area--dropdown {
  margin: 10px;
}
  
.area--nav {
  height: 80px;
  width: 100%;
  background-color: #003e57;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-content {
  width: 90%;
  height: auto;
  justify-content:space-between;
  align-items:last baseline;
  display:flex;
  flex-direction: row;
}

ul:last-child{
  margin-bottom: 30px;
}

.nav-buttons{
    float:right;
    align-self:center;
}

.nav-buttons a{
    color:white;
    padding:10px;
    font-size:20px;
    text-decoration: none;
}

.nav-selected{
    font-weight: bold;
}


.nav-image {
  width: 12em; /* Adjusted size of the navbar image */
  height: auto;
  margin-top:-10px;
  align-self:center;
}

.area--content {
  background-color: white;
  height: auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-content {
  width: 90%;
  height: auto;
  justify-content: left;
  height: 90%;
}

.area--footer {
  background-color: #003e57;
  height: 150px;
  width: 100%;
}

.dropdown-collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 30px;
}

.dropdown-active,
.dropdown-collapsible:hover {
  background-color: #ccc;
}

.dropdown-content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  height: auto;
}

.dropdown-collapsible:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
  margin-top:7px;
}

.dropdown-active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
  margin-top:7px;
}

/* Adjusted styles for mobile view */
@media (max-width: 1000px){
    .nav-buttons a{
        font-size:30px;
    }

    .nav-image{
        margin-top:-15px;
    }
    .area--footer{
        height:250px;
    }
    .dropdown-collapsible {
        width: 100%;
        margin: 0 auto;
        font-size: 20px; /* Increased font size for mobile */
        padding: 25px; /* Increased padding for mobile */
    }

    .dropdown-content {
        padding: 0 14px;
    }

    .nav-image {
        width: 300px; /* Increased size of the navbar image for mobile */
    }

    .area--nav{
        height:170px;
    }
}