@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 90%;
    font-family: 'poppins', sans-serif;
}

.header img {
    float: left;
    width: 80px;
    height: 80px;
    background: rgb(11, 9, 9);
}

.header h3 {
    position: relative;
    top: 25px;
    left: 10px;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navbar */

a {
    text-decoration: none;
    color: inherit;
}

.bold {
    font-size: 25px;
}

/* home */

span {
    color: blue;
    font-weight: bold;
}

p {
    font-size: 18px;
}

#home img {
    border-radius: 15px;
}

/*------About-------*/

#about img {
    border-radius: 50px;
}

/*------Branches------*/

.card img {
    height: 250px;
    transition: 1s;
}

.inner {
    overflow: hidden;
}

.card img:hover {
    transform: scale(1.5);
    transition: 1s;
}