* {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 5.5vh;
    color: rgb(255, 0, 255);
    text-shadow: 0.2vw 0.2vw 0.2vw #000;
    text-align: center;
}

body {
    background-color: #fff;
    background-size: cover;
    margin: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0.7vh);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: min-content;
    text-align: center;    
    font-size: 5vh;
    margin: 1vh;
}

#mainContainer {
    margin-top: var(--top);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.card {
    text-align: center;
    border-radius: 1vh;
    height: 85vh;
    width: 30vw;
    position: relative;
    background-color: rgba(112, 112, 112, 0.8);
}

.card ul {
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
    list-style: none;
    font-size: 2.7vh;
}

.card ul li {
    margin-top: 4%;
}

.card img{
    margin-top: 2%;
    height: auto;
    width: 80%;
}



#celula {
    margin-top: 1rem;
    padding: 1rem;
    display: flex;
    max-width: 60vw;
    border-radius: 1%;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    margin-left: auto;
    margin-right: auto;
}

.organelles {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: calc(10vh*3.1);
    margin-left: 2%;
    margin-right: 2%;
}

.organelles img {
    height: 10vh;
    width: auto;
    transition: transform 0.5s ease;
}

.organelles img:hover {
    transform: scale(1.5);
}

#zoomAble {
    transition: transform 0.5s;
    pointer-events: none;
}

#zoomAble:hover {
    transform: scale(1.2);
    pointer-events: auto;
}


.conteudo {
    display: block;
    background-color: rgba(0, 0, 0, 0.85);
    width: 89vw;
    height: 34vh;
    z-index: 1;
    border-radius: 0.5%;
    color: white;
    font-size: 2.7vh;
    padding: 1rem;
    text-align: justify;
}

.modern-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.7vh;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: var(--color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }