
*{
    font-family: "Poppins", sans-serif;
    padding:0;
    margin:0;
    vertical-align:baseline;
    list-style:none;
    border:0;
    width: auto;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: rgb(245, 245, 245);
    width: auto;
    
    
}

.topnav {
    background-color: rgb(255, 255, 255);    
    height: 3.5em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    width: auto;
    
   
    
}

.top-logo{
    width: 10em;
    margin: 10px;
    margin-left: 2em;
    cursor: pointer;
    
}

.btn_logout{
    display: inline;
    color: gray;
    cursor:pointer;
    margin-right: 2em;
    border: none;
    background-color: transparent;
    box-shadow: 0px 10px 14px -7px #7c7c7c;
    outline: 0;
    
}


.container-area{
    width: auto;
    height: 100vh;
    display: grid;
    flex-wrap: column;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2em;
    grid-gap :1em;
    background-color: rgb(245, 245, 245);
    margin-left: 2em;
    
    
}





.box {
    width: 300px;
    height: 440px;
    background-color: white;
    border-radius: 15px;
    box-shadow:  0 0 1em rgb(187, 187, 187);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.toolname{
    color: #333;
	font-size: 1.2rem;
    align-self: start;
    display: flex;
    margin-bottom: 15px;
    margin: 10px;
    
   

}

.toolpic{
    width: 100%;
    height: 200px;
    display: flex;
    margin-bottom: 10px;
    border-radius: 15px 15px 0 0;


}

.tool-text{
    color: #333;
	font-size: 12px;
    justify-content: right;
    margin: 10px;
    
}

.button {
	width: 95%;
	height: 50px;
	border-radius: 10px;
	border: none;
	background-image: linear-gradient(to right, rgb(00, 88, 166), rgb(00, 120, 166), rgb(00, 88, 166));
	font-size: 18px;
    font-weight: 500;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	transition: .5s;
    margin: 10px;
    margin-bottom: 20px;
    align-self: center;
    outline: 0;
    
    

}

.link{
    align-self: center;
    width: 98%;
}


