#background {
    background-image: url(../assets/index-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bar {
    background-color: rgb(0, 0, 0);
    height: 50px;
    width: 100%;
}

.textbox {
    background-color: rgba(0, 0, 0, 0.5);
    color: cyan; 
    width: 55%;
    height: auto;
    padding: 5px;
    margin-left: 5%;
    font-size: large;
}

.img-hover {
    width: 200px;
    height: 300px;
    background-image: url(../assets/face.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    margin-left: 70%;
}

.img-hover:hover {
    background-image: url(../assets/cat.jpg);
}