/*
 * Globals
 */


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(38, 20, 202, 0.5);
  box-shadow: inset 0 0 5rem rgba(38, 20, 202, 0.5);
  background-color: #2a2833;
}

.cover-container {
  position: relative;
  background-image: url(../images/landingpage.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 20% 0px ;
}

.inner{
  position: absolute;
  top: 40%;
  right: 30%;
  left: 30%;
  text-align: center;
  
}
.text-center {
  text-align: center !important;
}

/*
 * Header
 */

.navbar .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
 
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  border-bottom-color: rgba(38, 20, 202, 0.5);
  right: 50%;
}

.navbar .nav-link + .nav-link {
  margin-left: 1rem;

  
}

.navbar .active {
  color: rgba(38, 20, 202, 0.5);
  border-bottom-color: rgba(38, 20, 202, 0.5);
}

@media (max-width: 767.98px) { 
  .inner{
    color:rgba(255, 255, 255, 0.712);
    box-sizing: border-box;
    width: 50%;
  }
 }

 section .container{
  padding: 50px;
  text-align: left;
 }

 .font-italic{
  font-weight: italic;
 }

 .about-me{
  list-style-type: none;
 }

 .bi{
  color: rgba(255, 0, 119, 0.25);
  padding-right: 5px;
 }

 /**Flipcard**/

 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}


@media screen and (max-width: 600px) {
  .flip-card {
    display: flexbox;
  }
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}


/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}
 /**Flipcard Ende**/

 /**overlay **/
 .container1 {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}

 

.container1:hover .overlay {
  opacity: 1;
}


.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
 /** ovrelay end**/

 /**Button COLOR**/


 .btn-primary {
  color: #fff;
  background-color: #6495ED;
  border-color: #6495ED;
}

.btn-primary:hover {
  color: #fff;
  background-color: #4682B4;
  border-color: #4682B4;
}

a {
  color:#6495ED;
 
}

a:link, a:visited, a:active {
  color:#4682B4;
  text-decoration: none;
}

a:hover {
  color:#ced5e0;
}

.form-check-input:checked {
  background-color: #6495ED;
  border-color: #6495ED;
}
.btn-primary {
  color: #fff;
  background-color:#6495ED;
  border-color:#6495ED;
}

.h1 {

  font-size: 100%;
}

.bi {
  color:#6495ED;
}

.col {
  color:#6495ED;
}

@media screen and (max-width: 600px) {
  .lead {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .inner {
    position: absolute;
  }
}