/*HTML*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background 2s, padding 2s;
  transition: text 2s, padding 2s;
  list-style-type: none;
}
html, body{
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}
body{
    min-height: 100vh;
}
#page1{
    width: 900px;
    display: block;
    margin: 0 auto;
}
.header2{
    font-size: 25px;
    background-color: #003399;
    color:white;
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.header{
    font-size: 50px;
    background-color: #003399;
    color:white;
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.content{
  background-color: white;
  margin: 40px auto;
  max-width: 2000px;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  color: black;
}
.content2{
  background-color: white;
  margin: 40px auto;
  max-width: 2000px;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  color: black;
}
.images{
  margin: 40px auto;
  max-width: 2000px;
  padding: 40px;
}
h1{
    text-align: center;
}
/*Nav*/
.navbarul{
    list-style-type: none;
    background-color: #003399;
    display: flex;
    justify-content: left;
    gap: 20px;
    padding: 0px 0;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
.navbar li{
    float: left;
    padding: 20px;
}
.navbarul a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.5s, padding 0.5s;
    padding: 8px 16px;
    border-radius: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
}
.navbar a:hover{
    background-color: hsl(214, 100%, 41%);
    border-radius: 15px;
}
.navbar img{
    width: 100px;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 350px;
    z-index: 999;
    background-color: #003399b1;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar a:hover{
    background-color: hsl(214, 100%, 41%);
    border-radius: 15px;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.5s, padding 0.5s;
    padding: 8px 16px;
    border-radius: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 40px;
}
.menu-button{
    display: none;
}
.menu-button:hover{
    background-color: hsl(214, 100%, 41%);
    border-radius: 15px;
}
/*Main*/
main {
    min-height: 100vh; /* ensures at least one full screen height */
    background: linear-gradient(rgba(91, 120, 176, 0.6), rgba(0, 51, 153, 0.6)),
                url('images/shkolla_gjergj_katrioti_irl.png') center/cover no-repeat;
    background-attachment: scroll; /* make it move with scrolling */
    background-repeat: repeat-y; /* repeats infinitely downwards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 'top' isn’t valid, use this */
    color: white;
    text-align: center;
    padding: 40px;
}
main h1{
    align-items: center;
    font-size: 30px;
}
main p{
    text-align: left;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}
main footer{
    text-align: right;
    font-size: 14px;
}
@media(max-width: 840px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
    .content h{
        font-size: 20px;
    }
    .content p{
        font-size: 15px;
    }
    .content footer{
        font-size: 9px;
    }
}
@media(max-width: 800px){
    .sidebar{
        width: 100%;
    }
}