/* Default DevCorner Style Setting */

:root{
  --dc-: #28a745;
  --gr-: #515151;
  --wh-: #fefefe;
  --shadow-: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
  --ts-: 2px 5px 2px rgba(33,33,33,0.25);
}

.fa-code{
  color: var(--dc-);
}

/* .center{
  width: 50%;
  margin: 0 auto;
} */

.brand{
  margin: 0;
  padding: 0.5em;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gr-);
  font-family: Roboto;
  z-index: 1;
  font-size: 3em;
  text-shadow: var(--ts-);
}

.slogan{
  margin: 0;
  padding: 0.5em;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gr-);
  font-family: Roboto;
  font-size: 1.2em;
  text-shadow: var(--ts-);
  text-align: center;
}

.slogan button{
  width: 300px;
  height: 50px;
  border: 2px solid var(--dc-);
  border-radius: 5px;
  font-weight: 400;
  color: var(--dc-);
  background: rgba(255,255,255,0.5);
  font-size: 20px;
  cursor: pointer;
}

.slogan button:hover{
  background: rgba(255,255,255,0.7);
}

button::-webkit-focus-inner{
  border: 0;
}

button::-moz-focus-inner{
  border: 0;
}

button::-o-focus-inner{
  border: 0;
}

button::-ms-focus-inner{
  border: 0;
}

body {
  font-family: Roboto;
  background: url(../img/img_05.jpeg) no-repeat 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 200px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(21,21,21,0.8); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  /*! background-color: #fefefe; */
  margin: auto;
  padding: 0;
  width: 50%;
  /*! box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); */
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  text-align: center;
}

b{
  text-decoration: underline;
  color: var(--dc-);
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes animatetop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  /*! background-color: #5cb85c; */
  color: white;
}

.modal-body {
  padding: 2px 16px;
  color: #fff;
}

.modal-footer {
  margin: 4em 2em;
  text-align: right;
}

.modal-footer button{
  width: 90px;
  height: 30px;
  color: #ccc;
  font-size: 15px !important;;
  border: 1px solid var(--gr-);
  border-radius: 5px;
  font-weight: 400;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.modal-footer button:first-child:hover{
  color: red;
  border: 1px solid red;
}
.modal-footer button:last-child:hover{
  color: green;
  border: 1px solid var(--dc-);
}
















/* End */
