 @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  background: linear-gradient(135deg, rgba(52, 123, 214, 1) 35%, rgba(42, 174, 242, 1) 100%);
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
}

h1{
	font-size:3rem;
	text-align: center;
  margin: 10px auto;
}

h2{
	text-align:center;
  margin: 15px auto;
}

/* Elementos Sidebar */
.background {
  background-color: #000;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  overflow: auto;
  position: fixed;
  z-index: 998;
}


/* contenido  */
.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width:max-content;
  margin: auto;
  padding: 1px 16px;
}

.items-block{
  margin: auto;
}

.logo {
	max-width: max-content;
	margin: auto;
}


.btn {
  background-image: linear-gradient(to right, #347bd6 0%, #2aaef2 51%, #347bd6 100%);
  background-size: 200% auto;
  border: solid;
  border-width: 2px;
  border-radius: 30px;
  color: white;
  display: block;
  height: 50px;
  width: 300px;
  font-size: 16px;
  margin-top: 10px;
  margin: auto;
  transition: 0.5s;
  text-align: center;
  padding-top: 10px;
  text-decoration: none;
}

.btn:hover {
  cursor: pointer;
  transition: all .25s ease-in-out;
  background-position: right center;
}

.btn:focus {
  outline: none !important;
}
