/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/* Removing default values */

html,
body {
  margin: 0px;
  padding: 0px;
}

a,
a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* Generic settings */

h1 {
  margin: 0px 0px 10px 0px;
}

h2 {
  font-weight: normal;
  font-size: 20px;
}

/* Body */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  font-family: "Lato", sans-serif;
  color: #444444;
  letter-spacing: 1px;
  user-select: none;
}

/* Header */
header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px 15px 20px 30px;
}

#logo_text {
  font-size: 30px;
  font-weight: bold;
  color: #05a8aa;
}

/* Navigation */
nav {
  display: flex;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-end;
  list-style: none;
}

nav ul li {
  margin: 0px 30px 0px 15px;
}

/* Main */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Title */
#site_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-bottom: 30px;
  text-align: center;
  margin: auto;
}

/* Click me box */
/* Nagyon szeretlek Drága Egyetlenem */
#clickMe {
  width: 40%;
  height: 15vh;
  font-size: 30px;
  font-weight: bold;
  color: white;
  background-color: #05a8aa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

/* Buttons */
#buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 40%;
  justify-content: space-around;
}

/* Button */
.button {
  background-color: #b8d5b8;
  margin-top: 10px;
  border-radius: 6px;
  flex-basis: 160px;
}

.button p {
  padding: 10px;
  margin: 0px;
  border-radius: 6px;
  font-weight: bolder;
}

.title {
  text-align: center;
  text-transform: uppercase;
  font-weight: bolder;
  color: white;
  background-color: #05a8aa;
}

/* Reset */
#reset {
  height: 60px;
  width: 60px;
  color: white;
  background-color: #dc602e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: bold;
  align-self: flex-end;
  margin-top: auto;
  margin-right: 20px;
}

/* Footer */
footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background-color: #05a8aa;
  color: white;
  font-weight: bold;
}

@media screen and (max-width: 600px), screen and (max-height: 600px) {
  body {
    height: 100%;
  }

  header {
    justify-content: center;
  }

  nav ul {
    padding: 0px 20px;
  }
  #site_heading {
    width: 80%;
  }

  #clickMe {
    width: 60%;
  }

  #buttons {
    width: 60%;
  }
}
