/* 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-);
}

.fa-heart{
  color: red;
}

.center{
  text-align: center;
  margin: 30% 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: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gr-);
  font-family: Roboto;
  font-size: 1.2em;
  text-shadow: var(--ts-);
}

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

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  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(0, 0, 0, 0.4);
  /* Black w/ opacity */
  -webkit-animation-name: fadeIn;
  /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  background: url(../img/img_03.jpeg) no-repeat 50% -310%;
  background-size: cover;
  background-attachment:  fixed;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
  border-top: 2px solid var(--dc-);
}

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

.close:hover,
.close:focus {
  color: var(--gr-);
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  color: white;
}

.modal-header h2{
  color: var(--dc-);
}

.modal-header h2 > i:nth-child(2){
  color: var(--dc-);
  vertical-align: super;
  animation: arrow 1.5s infinite;
}

@keyframes arrow {
  0%{
    margin: 0 10px;
  }
  50%{
    margin: 0 0px;
  }
  100%{
    margin: 0 10px;
  }
}

.modal-body {
  margin: 0 1em;
  background: transparent;
  text-align: center;
  font-weight: 600;
  color: var(--gr-);
  line-height: 12px;
}

.modal-footer {
  margin: 10px 15px;
  color: darkgreen;
  text-align: right;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

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;
}

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;
}



















/* End */
