@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans|Barlow|Dosis');

* {
  font-family: 'Barlow', sans-serif;
  list-style: none;

}

body {
  margin: 0;
  padding:0;
}

/* HEADER */

header {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #242423;
  position: fixed;
  width:100%;
}

.social ul {
  display: flex;
}

.social li {
  margin-right:10px;
  transition: all .2s ease-in-out;
}

.social li:hover {
  transform: scale(1.1);
}

.social ul li {
  color: white;
}

.login ul {
  display: flex;
}

.login li {
  margin-left:10px;
  transition: all .2s ease-in-out;
}

.login li:hover {
  transform: scale(1.1);
}

.login ul li {
  color: white;
}

.login ul a {
text-decoration: none;
  }


/* HEADER MAIN */
.header-main {
  display: flex;
  justify-content: space-around;
  padding-top:100px;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Dosis', sans-serif;
  font-size:30px;
  text-transform: uppercase;
  color: white;
}

.menu-main ul {
  display: flex;
  flex-wrap: wrap;

}

.menu-main ul li  {
  margin-left:40px;
  color: white;
  text-transform: uppercase;
  font-size:18px;
   transition: all .2s ease-in-out;
}

.menu-main ul li:hover  {
  transform: scale(1.1);
}

.menu-main ul a  {
  text-decoration: none;
}

.toggle-nav {
  display:none;
}


/* MAIN */
main {
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.7)), url('https://img15.hostingpics.net/pics/545469pexelsphoto7180021.jpg');
  background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.content {
  padding-top:200px;
  display: flex;
  text-align: center;
  flex-direction: column;

}

h1, h2 {
  color: white;
}

h1 {
  font-size:44px;
  text-transform: uppercase;

}

h2 {
  font-size: 24px;
  margin-top:-80px;
}

.buttons {
  margin-top:100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  margin: 50px;
  padding:10px;
  width:200px;
  background-color: transparent;
    color: white;
    border: 3px solid white;
  font-size:26px;
  transition-duration: 0.4s;
}

button:hover {
   background-color: #E8EDDF;
  color: #333533;
  border-radius:10px;
  cursor: pointer;
}

/*Images*/

.images
  {
        text-align: center;

  }

/* RESPONSIVE */
@media screen and (max-width: 700px) {

  .menu-main ul.active {
        display:none;
    }


    .toggle-nav:hover, .toggle-nav.active {
        text-decoration:none;
        color:white;
    }
   .menu-main ul {
        width:150px;
        padding:10px 10px;
        background:transparent;

    }


    .menu-main li {
        margin:5px 0px 5px 0px;
        float:none;
        display:block;
    }


    .menu-main a {
        display:block;
    }

    .toggle-nav {
        float:right;
        display:inline-block;
        color:#d1d1d1;
        font-size:18px;
        transition:color linear 0.15s;
    }

    .content {
      padding-top:60px;

  }

  h1 {
  font-size:36px;

}

h2 {
  font-size: 18px;
  margin-top:-40px;
}

}
