@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

body {
    overflow-x: hidden;
}

:root {
    --color: rgb(100, 154, 201);
    --white: white;
    --red: rgb(77, 194, 107);
    --light: rgb(218, 218, 218);
    --gray: rgb(179, 179, 179);
    --black: black;
    --light-blue: rgb(252, 243, 240);
}

.library {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1rem;
    text-align: center;
    margin-bottom: 5%;
}

.library-content img{
    width: 100%;
}

.library-content h3{
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;

}