
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  font-size: 16px;
  height: auto;
}

body {
background-color: white;
}

.name {
  display: flex;
  flex-direction: column;
  padding-top: 5%;
}

.name h1 {
  color: rgb(0, 0, 0);
  align-self: center;

  text-align: center;
  font-size: 3em;
  font-family:'Roboto';
}

.name h2 {
  align-self: center;
  color: rgb(0, 0, 0);
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Roboto';
}

.about {
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: medium;
  border-color: black;
}

.about h3, h4 {
  font-size: 2em;
  text-align: center;
  font-family: 'Roboto';
}

.about p {
  color: rgb(0, 0, 0);
  text-align: center;
  font-size: larger;
  font-weight: bold;
  font-family: 'Roboto';

  padding-left: 15%;
  padding-right: 15%;
  padding-top: 1%;
  padding-bottom: 5%;
}

.announce {
  display: flex;
  flex-direction: column;
 border-style: transparent;
}

.announce h5 {
  text-align: center;
  font-family: 'Roboto';
  font-size: 2em;
}

.announce h6 {
  text-align: center;
  font-family: 'Roboto';
  font-size: 1em;
}

.announce p,  {

  color: rgb(0, 0, 0);
  text-align: center;
  font-size: larger;
  font-weight: bold;
  font-family: 'Roboto';

  padding-left: 15%;
  padding-right: 15%;
  padding-top: 2%;
  padding-bottom: 5%;
  
}


.icons8 {
  padding-top: 10%;
  text-align: center;
}


.slideshow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;

    width: 100%;
    height: auto;
    overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: auto;

}

.top-menu {
  background: linear-gradient(to bottom, rgb(0, 11, 217), rgb(0, 119, 255));
  color: white;
  max-width: 100vw;
  overflow: hidden;

  position: fixed;
  top: 0;
  width: 100%;
}

.top-menu ul {
  display: flex;
    justify-content: space-between; 
    align-items: center; 
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top-menu li {
 padding: 0.625rem 1.25rem;
 padding-left: 5%;
 padding-right: 5%;

 display: inline;
}

.top-menu a {
 text-decoration: none;

 color: rgb(255, 255, 255);
 font-size: larger;
 font-family: 'Roboto';
 font-weight: bold;
}

.top-menu a:hover {
color: crimson;
}

@media screen and (max-width:1200px) {
  .name {
    padding-top:7.5%
  }
  
}

/* for smaller laptops and mobile devices*/
@media screen and (max-width:768px) {
  .top-menu ul {
    display: flex;
 flex-direction: row;
 align-items: center;

  }

  .name {
    flex-direction: column;
    align-items: center;
    padding-top: 12.5%;
  }

  .name h1 {
    font-size: 2em;
  }

  .name h2 {
    align-self: center;
    font-size: 1em;
  }

  h2 {
    padding-left: 0%;
    padding-right: 0%;
  }
  
}

@media screen and (max-width:650px) {
 
  .top-menu ul {
    display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-evenly;

  }

  .name {
    flex-direction: column;
    align-items: center;
    padding-top: 20%;
  }

  .name h1 {
    font-size: 2em;
  }

  .name h2 {
    align-self: center;
    font-size: 1em;
  }

  h2 {
    padding-left: 0%;
    padding-right: 0%;
  }
  
}

@media screen and (max-width:530px) {
  .name {
    padding-top: 30%;
    
  }
  
}

@media screen and (max-width:437px) {
  .name {
    padding-top: 50%;
  }
}

@media screen and (max-width:350px) {
  .name {
    padding-top: 55%;
  }
  
}