* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./imgs/laboratorybackground.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px);
  z-index: -1;
}

.content {
    margin:auto
}

.title-card {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: 40px;
    padding: 9px;
    background-image: linear-gradient(to right, #6a0000, #d20000);
    border: 2px solid;
    border-radius: 0.7rem;
    border-color: #000;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
}

.container {
    text-align: center;
    width: 80%;
    margin: auto;
    margin-top: 1rem;
    padding: 9px;
    background-image: linear-gradient(to left, #10002b, #2c1a7d);
    border: 2px solid;
    border-radius: 0.7rem; 
}

.container h3 {
    margin: 0.2rem;
    font-size: 48px;
    color: white;
    text-shadow: 5px 5px 3px rgba(0, 0, 0, 1);
}

.element-image {
    width: 20%;
    max-width: 600px;
    height: auto;
    border: 2px solid;
    border-radius: 0.7rem;
    margin: 0.7rem;
}

.element-description {
    font-size: 25px;
    padding: 0.7rem;
    color: #fff;
}

.element-button {
    margin: 10px;
    width: 15rem;
    font-size: 30px ;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
    padding: 20px;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);
    background-image: linear-gradient(to left, #303030, #282828);
    border: 3px solid #000000;
    border-radius: 12px;
    transition: transform 0.2s ease-out;
}

.animation-hover {
    transform: scale(1.05);
}

.developer-text {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: 10px;
    padding: 9px;
    background-image: linear-gradient(to right, #94ff88, #00db37);
    border: 2px solid;
    border-radius: 0.7rem;
    border-color: #000;
    color: #000000;
    text-shadow: 3px 3px 10px rgb(0, 0, 0);
}
