html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

#footer-container {
  margin-top: auto;
  padding-top: 20px;
}

.carousel-item {
  height: auto;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1.5px);
  z-index: 1;
}

.ip-section input {
  max-width: 260px;
}

#whythegrass {
  text-align: center;
}

.borderwhite {
  border-width: 5px;
  border-color: white;
}

/* Website Color Themes */
/* Main Color */
.main-f-color {
  color: rgb(150, 190, 228);
  transition: 0.4s;
}

/* Color when hovering by the mouse pointer */
.main-f-color:hover {
  box-shadow: 0 0 7px 2px rgb(150, 190, 228);
  color: rgb(115, 154, 189);
  transition: 0.4s;
}

.btn {
  color: white;
  background-color: rgb(150, 190, 228);
  border-color: rgb(184, 215, 243);
}

.btn:hover {
  color: gainsboro;
  background-color: rgb(115, 154, 189);
}

.card {
  margin-top: 10px;
  transition: 0.5s;
  outline: 2px solid rgb(184, 215, 243);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: scale(1.01);
  transition: 0.5s;
  z-index: 2;
}

.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* Every TAG into Html files that uses this class, will
  get a gray color */

.textgray {
  color: gray;
}

.textblack {
  color: black;

}

.text50 {
  font-size: 75%;
}

/* Every TAG into Html files that uses this class, will
  get a black color */

.textblack {
  color: black;
}

/* Every TAG into Html files that uses this class, will
  get a black color */

.textwhite {
  color: white;
}

/* Every TAG into Html files that uses this class, will
  get a gray background color */

.backgray {
  background-color: rgb(248, 248, 248);
}

section div {
  text-align: center;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/* testimonials */


#testimonials {
  padding: 1% 15%;
  text-align: center;
  color: white;
}

.testemonial-image {
  width: 10%;
  border-radius: 100%;
  margin: 20px;
}

/* 
#serverfeatures {
  text-align: left;
}
*/

/* Server features blocks */

.featureboxes {
  border: 0px solid white;
  transition: 0.15s;
  width: auto;
  height: auto;
  text-align: center;
}

.featureboxes:hover {
  transition: 0.15s;
  transform: scale(1.01);
  /* (110% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  border-radius: 3px;
  text-align: center;
}

/* The following class resizes the images for features */
.img-featureboxes {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  text-align: center;
}

/* For the Player count */
.playercount {
  display: inline-block;
}

/* For the News. Should have a predetermined size */
.img-news {
  max-width: 700px;
  max-height: 350px;
}

.img-ip {
  display: block;
  max-width: 40%;
  height: auto;
  margin: 0 auto;
}


/* For footer Medias */

.medias {
  color: gray;
  text-decoration: none;
  text-align: center;
}

.medias:hover {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.card-img-top {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  text-align: center;
  align-content: center;
  padding-top: 1rem;
}

.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-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

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

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

.modal-header {
  padding: 2px 16px;
  background-color: rgb(150, 190, 228);
  color: white;
}

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

.modal-footer {
  padding: 2px 16px;
  background-color: rgb(150, 190, 228);
  color: white;
}

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

.anchor {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}

.anchor_url {
  color: black;
  text-align: left;
}