@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('');
@font-face {
    font-family: myFont;
    src: url(/scripts/Reforma.ttf);
    
}


body {
    font-family: 'Cardo',serif;
    background-image: url("fondKanya.jpg");
  }
h2 {
    font-family: 'cardo';
    font-size: 45px;
    font-weight: 800;
    color: rgb(255, 255, 255);
}


h4 {
    font-weight: 800;
    font-size: 14pt;
    color: #e4ab54;
}
i {
    color: rgb(255, 255, 255);
    font-size: 40px;
}
.card {
    background-color: #122001;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: auto;
    cursor:default;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    border: 2px solid rgba(7, 7, 7, 0.12);
}
.card:hover {
  overflow: hidden;
  opacity: 0.9;
  border: #e4ab55 2px solid;
  transform: translate(0,-2%);
    
}
.card-title {
    letter-spacing: 4px;
}
.btn {
    border-top: 2px solid #e4ab54;
    border-bottom: 2px solid #e4ab54;
    border-left: 0; 
    border-right: 0;
    color: white;
}
.btn:hover {
    color: white;
}
p {
    color: white;
}
.list-group {
    border: 1px white solid;
}
label {
    color: white;
    font-size: 12pt;
}
img {
    height: 230px;
    width: 230px;
}
.form-control {
    
    background-color: rgb(224, 223, 223);
    border-color: grey;
    border-radius: 7PX;
    color: black;
    transition: all 0.3s ease;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #0b7939;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #0b7939;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }