@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Fjalla+One');

*{
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 800px;
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  background:transparent;
  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover;
  background-attachment: fixed; 
  overflow: scroll;
}
p{
  font-size: 1em;
  font-family: 'Ubuntu', sans-serif;
}
/*background setting*/
#background img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.mySlides {
  display: none;
}

header {
    background-color: #84152E;
    width:100%;
    height: 60px;
    margin: 0;
    position: absolute;
    top: 0;
    z-index: 20;
}

#welcome {
  z-index: 20;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 10%;
  margin: 2% 0;
}

.logo {
    width: 215px;
    height: 215px;
    background-color: rgba(250,250,250, 0.6);
    border-radius: 50%;
    margin-bottom: 5%;
    padding: 2px;
    position: relative;
    top: 5%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.logo img {
  transform: scale(0.75);
}


.paragraph {
  position: relative;
  top: 15%;
  width: 60%;
  height: auto;
  
  margin-bottom: 2%;
  font-size: 1em;
  border: 0px solid white;
  border-radius: 20px/50px;
  padding: 2% 10%;
  text-align: center;
  color: white;
  background-color: #84152E; 
  font-family: 'Cabin', sans-serif;

}

#startbtn button{
  font-size: 1em;
  padding: 10px;
  color: #84152E;
  border: 1px solid white;
  border-radius: 20px/50px;
  position: relative;
  top: 2%;
  bottom: 2%;
  width: 30%;
  font-family: 'Ubuntu', sans-serif;
}
 #startbtn button:hover {
  background-color: #84152E;
  color: white;
}
#startbtn a{
  text-decoration:none;
  color: #84152E;
}
#startbtn a:hover{
  text-decoration:none;
  color: white;
}

footer {
  position: absolute;
  bottom: 0;

  width: 100%;
  height: 60px;
  background-color: #84152E;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}

footer .widget {

  margin: 0;
  width: 33.33%;
  text-align: center;
  padding: 0 2%;
  display: flex;
  flex-flow: row nowrap;
  justify-content:center;
  align-items: center;
}
footer a{
  text-decoration:none;
  color: #888888;
  font-size: 1.5em;
  font-family: 'Fjalla One', sans-serif;
}
footer a:hover{
  color: white;
}



/*responsive*/

@media screen and (max-width: 640px) and (min-width: 540px){
  .paragraph {
    width: 80%;
    margin-top: 5%;

  }
  #startbtn button{
    width: 70%;
  }

}

@media screen and (max-width: 540px){
  body{
    height: 750px;
  }

  .paragraph {
    width: 100%;
  }
  #startbtn button{
    width: 100%;
  }
  footer {
    position: absolute;
  bottom: 0;
  height: 90px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-around;
  align-items: center;
  }
  footer .widget {
    border: 1px solid white;
    width: 100%;
    height: 33.33%;
    margin: 0;
  text-align: center;
  padding: 0 2%;
  }
  footer a{
  text-decoration:none;
  font-size: 1em;

}
}