@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
html, body {
    height: 100%;
}

.bod{
    position: absolute;
    height: 680px;
    top: 63px;
    width: 100%;
    background-color: #F1F1F1;
    border-top: black solid 1px;
    border-bottom: black solid 1px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.bod-card{
    /* flex-basis: 25%; */
    width: 290px;
    /* border: .5px solid black; */
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 20px;
    background-color: #F6F6F6;
}
.title{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    padding-bottom: 20px;
}
.bod-name{
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
}
@media screen and (max-width:940px){
    .bod-card{
        /* flex-basis: 50%; */
        height: 150px;
        
    }
    .bod{
        height: 200vh;
    }
}

