
@font-face {
    font-family: Poppins;
    src: url(./assets/fonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: Poppins;
    src: url(./assets/fonts/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
}
body {
    background-color: #41b2da;
    font-family:'Poppins', Arial, sans-serif;
}

h1 {
    color: navy;
    text-align: center;
}

p {
    line-height: 1.6;
}

#bio {
    margin: 20px auto;
    max-width: 1000px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border-style: inset;
    border-radius: 25px;
    border-width: 5px;
    background-color:#AED7E8;
    padding-left: 10px;
    padding-right: 10px;

}
.boardparent {
    background-color: rgb(42, 139, 203);
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 20px auto;
    background-image: url(assets/tv3.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: black;
    border-radius: 20px;
    border-width: 5px;
    border-style:solid;
    padding-left: 5px;
    padding-right: 5px
}

.boardchild {
    margin: 1px auto;
    max-width: 46%;
    justify-content:left;
        align-items:left;
    border-style: solid;
    border-radius: 5px;
    border-width: 3px;
    background-color:#AED7E8;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;

}