/* @font-face {
  font-family: Lato;
  src: url(font/Lato-Regular.ttf);
} */

html * {
  font-family: Lato;
}

html, body {
  margin: 0;
  /* height: 100%; */
}

.navbar {
  overflow: hidden;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  border-radius: 5px;
  background-color: #89CFF0;
}

.navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

.navbar a.logo {
    font-size: 25px;
    font-weight: bold;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.navbar a.active {
  background-color: dodgerblue;
  color: white;
}

.navbar-right {
  float: right;
}

html {
  background-color: #034694;
}

.flex-container {
  display: flex;
  /* margin-top: 20px; */
  background-image: url(../media/background.png);
  background-position: center;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.flex-child {
  flex: 1;
  text-align: center;
}

/* .flex-child-text {
  margin-top: 50px;
} */

p{
  font-size: 25px;
}

h1{
  font-size: 50px;
}

/* button{
  background-color: #89CFF0;
  width: 100px;
  height: 50px;
} */

#mypicture {
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  box-shadow: 10px 10px 10px;
}

#sans {
  width: 20em;
  height: 5em;
}
.school-logo{
  margin-top: 10px;
}

#sociallinks {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: red; */
  gap: 1em;
  margin-top: 1em;
}

#sociallinks img{
  width: 5em;
  height: 5em;
  border-radius: 50%;
  /* color: black;
  filter: brightness(0%) */
  
}

#sociallinks img:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  transform: scale(1.1);
}

button {
  background-image: linear-gradient(to right, #a1c4fd 0%, #c2e9fb 51%, #a1c4fd 100%);
  border: 2px solid black;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 10%;
}

button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

button:hover{
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

button:hover span {
  padding-right: 25px;
}

button:hover span:after {
  opacity: 1;
  right: 0;
}
/* 
.important-links {
  background-color: #89CFF0;
} */



main {
  margin-top: 4em;
  margin-left: 4em;
  margin-right: 4em;
}