@import url('https://fonts.googleapis.com/css2?family=Overlock&effect=outline');

body {
    font-family: "Overlock", serif
}
.title_box
{
    display: flex;
    background-color: #dcf3ff;
    color:black;
    border-color: white;
    min-width: 70svw;
    max-width: 70svw;
    min-height: 50svh;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    justify-self: center;
    border: 3px solid #a4d2eb;
    border-radius: 40px;
    margin-top: 5svh;
}
.resource_one_box
{
    display: flex;
    background-color: #ffffff00;
    min-width: 99svw;
    min-height: 45svh;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.resource_one_inner_box
{
    display: flex;
    background-color: #e3fde4;
    color:black;
    min-width: 30svw;
    max-width: 30svw;
    max-height: 60svh;
    min-height: 35svh;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    border-left-width: 7.5px; 
    border-left-color: #caf3cc; 
    border-left-style: solid; 
}

.rounded_button
{
    background-color: #bce4bedc;
    border-color: #a7d8aadc;
    color:black;
    font-size: larger;
    min-height: 7.5svh;
    min-width: 15svw;
    border-radius: 25px;
    justify-self: center;
    align-self: center;
    font-family: "Overlock", serif;
    cursor: pointer;
}

.help_box
{
    display: flex;
    background-color: #fff1e9;
    border: 2px solid #ecd9ce;
    color: black;
    min-width: 75svw;
    max-width: 75svw;
    min-height: 60svh;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    align-items: center;
    border-radius: 40px;
    margin-bottom: 10vh;
}
.help_inner_box
{
    display: flex;
    background-color: #ffe3d3;
    border-color: #eccbb8;
    min-width: 35svw;
    min-height: 15svh;
    border-style: solid;
    border-width: 2px;
    justify-content: center;
    align-content: center;
    border-radius: 20px;
    margin-bottom: 5svh;
    margin-left: 2.5svh;
    margin-right: 2.5svh;
    
}
.resources_box
{
    display: flex;
    background-color: #5b218e00;
    color:white;
    min-width: 85svw;
    max-width: 75svw;
    min-height: 35svh;
    justify-self: center;
    align-content: center;
    justify-content: center;
    flex-direction: row;

}
.resource_link
{
    font-size: x-large;    
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #7aca7d75;
    color:black;
    border-radius: 10px; 
    min-width: 20svw;
    text-align: center;
    justify-content: center;
    margin-left: 10svw;
    cursor: pointer;
}
.resource_link:hover
{
  background-color: #baf0bc75;
}

.help_links_box
{
    display: flex;
    background-color: #ffe3d3;
    border: 5px solid #eccbb8;
    color:black;
    margin-top: 5vh;
    margin-bottom: 5vh;
    min-width: 20svw;
    max-width: 75svw;
    min-height: 40svh;
    align-items: center;
    justify-items: center;
    justify-self: center;
    flex-direction: row;
    border-radius: 20px;
}
.buttons{
  color: inherit;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 20px;
  display: inline-block;
  transition: all 0.1s;

}

/*Header CSS*/

.navbar {
  width: 100%;
  background: var(--accent-color, #79addc);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
/*  stops items from going off screen */
.nav-list {
  display: flex;
  flex-wrap: wrap;          
  gap: 1rem;                
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  border-bottom: 2px solid rgb(255, 255, 255);
  padding-bottom: 2px;
}
.page-header {
  width: 100%;
  background-color: #a4d2eb;
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.page-header .navbar {
  background: none; /* remove duplicate color */
  box-shadow: none;
  padding: 0;
}