.divFrame {
    width: 100%;
    transition: width 3s;
}

.divFrame:hover {
    width: 10%;
}

.colors {
    padding-right: 20px;
    display: grid;
    font-size: 0.5em;
    color: black;
}
#call {
    width: 100%;
    height: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "c4 c5";

}

#c4 {
    padding-right: 40px;
    display: grid;
    font-size: 2em;

    grid-template-columns: 1fr 1fr 1fr 1fr 3fr;
    grid-area: c4;
}

#c5 {
    height: 100% grid-area: c5;
}

#c6 {
    height: 100% grid-area: c6;
}

.site-footer {
    display: none;
}

table,
th,
td {
    border: 1px solid black;
}

.parent{
    padding: 1rem;
    width:50%;
}
.cluster{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    transition: width 3s;
    width: 100%;
}
.cluster:hover {
    width: 10%;
}
.cluster-item{
    background-color: rgba(0,0,255,0.3);
    border: 1px solid blue;
    flex-grow: 1;
}


#responsive-flex{
    font-size: clamp(min(0.5vw, 1rem), 1rem, max(4vw, 3rem));
    width: 90%;
}

.resp-buttons{
    display:flex;
}




  
  .value {
    background: lavenderblush;
    border-radius: 20px;
    padding: 0.3em 0.75em;
  }
  
  .window,
  .actual {
    font-family: monospace;
    padding: 0.15em 0.35em;
  }
  
  .element {
    background-color: papayawhip;
    height: 200px;
    width: min(50vw, 400px);
    display: grid;
    place-content: center;
    justify-self: center;
    border: 1px solid gold;
  }
  
  .actual {
    background: gold;
  }
  
  .window {
    background: lavenderblush;
    border-bottom: 3px dashed goldenrod;
  }
  
  .highlight {
    background-color: gold;
    border-bottom: 3px dashed goldenrod;
  }
  
  h1 {
    font-weight: 300;
    margin: 0 0 1rem;
  }
  
  .support {
    color: initial;
    background: papayawhip;
    border: 1px solid gold;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    display: inline-grid;
    place-content: center;
    border-radius: 50%;
    vertical-align: text-top;
    text-decoration: none;
    margin-left: 0.25rem;
  }
  
  .func_parent {
    font-size: 16px;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  
  .line {
    height: 1px;
    width: 100%;
    background-color: lightgray;
  }
  
  .func_parent p {
    background: #f9f9f9;
    border: 1px solid lightgray;
    padding: 1rem;
  }