
text{
    color: black;
    font-size: 1.2em;
}


h1{
    color: #000;
    font-size: 2em;
    font-weight:normal;
    justify-self: center;
}
.subtitle{
    background-color: #F6F6F6;
    font-size: 1.2em;
}
.tools{
    display: flex;
    flex-direction: row; 
    justify-content: center;
    padding: 20px;
}
.tool_container{
    padding: 20px;
    align-content: center; 
    text-align: center;
}
.tool_info_container{
    padding: 20px;
    align-content: center; 
    text-align: center;
}
.tool{
  
    background-color: #CFD9D8;
    width: 300px; 
    height:200px; 
    align-content: center; 
    text-align: center;
}
.tool_info{
  
    background-color: #CFD9D8;
    width: 300px; 
    height:200px; 
    position: relative;
    align-content: center; 
    text-align: center;
}

button.info_button{
    background-color: white; 
    color: black; 
    padding: 5px 10px; 
    cursor: pointer;
    border: 3px solid white;
}
button.info_button:hover{
    background-color: #F6F6F6; 
    color: black; 
}
 
.flyout{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height:100%; 
    background-color: darkgray; 
    display: none;
    align-items: center;
    grid-template-rows: 3fr 1fr;
}
.tool_info:hover .flyout{
    display:grid;
    
}