/* home.css */

.body {
    background: url('../img/sameer/home-bg.webp') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.icon {
    width: 25px;
    margin-right: 1.5rem;
}

.icon:hover {
    transform: scale(1.2);
}

#banner {
    padding-top: 220px;
    padding-bottom: 55px;
}

#greetingText {
    display: inline-block;
    font-family: 'Press Start 2P', cursive;
    font-size: 35px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* Screen width less than 768px will push #greetingText on top of face */
@media (max-width: 991px) {
    #banner {
        padding-top: 300px;
    }
    #greetingText {
        font-size: 22px;
    }
}

#bio {
    font-family: 'Ubuntu', sans-serif;
}

.custom-hr {
    width: calc(100% - 95px);
}
