:root {
    --dark-blue: #30405a;
    --dark-blue-gradient: #2f48395c;
    --white: #ffffff;
    --white-transparent: #e9e9e95c;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.boton-redes {
  position: fixed;
  bottom: 30px; 
  right: 30px; 
  z-index: 1000;
}
.boton-redes a {
  display: block;
  width: 70px; 
  height: 70px; 
  margin-bottom: 20px; 
  border-radius: 50%; 
  overflow: hidden; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.boton-redes img {
  width: 100%; 
  height: auto; 
}

.cover-container {
	margin-top: 5em;
}
/*
.cover-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
*/
.cover-content {
    color: var(--white);
    background: var(--white-transparent);
    padding: 2em 5em;
    border-radius: 1em;
}

.cover-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cover-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.open-modal-link {
    color: var(--dark-blue);
}

.fixed-size {
     width: 300px;
     height: 300px;
}

.separator-1 {
    border-left: 1px solid gray;
    border-right: 1px solid gray;
}

.checkbox {
    width: 25px;
    height: 25px;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
  font-size: large;
}

.thanks-no-dogs{
	font-size: 1.3em;
    font-weight: 600;
}

@media (max-width:576px) {
    .separator-1 {
        border: unset;
    }
}


