@import url("https://fonts.googleapis.com/css?family=Roboto");
html{
    scroll-behavior: smooth !important;
    animation-duration: 1s; /* the duration of the animation */
    animation-timing-function: ease-out; /* how the animation will behave */
    animation-delay: 0s; /* how long to delay the animation from starting */
    animation-iteration-count: 1; /* how many times the animation will play */
    animation-name: slideInFromLeft; /* the name of the animation we defined above */
}
body {
  font-family: "Roboto", sans-serif;
  background-image: url("../images/bg.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-end{
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}
.footer-end hr{
    visibility: hidden;
}
#logo-home{
    margin-left: 2%;
}

#newscard{
    background-color: rgba(0, 155, 255, 0.2);
    border-radius: 30px;
    border: solid transparent;
}

#replystyle{
    transition: all 0.5s ease;
    text-transform: uppercase;
    color: black;
    background-color: white;
    padding: 1%;
    border: 2px solid black;
    text-decoration: none;
    border-radius: 10%;
}

#clockicon{
    padding-left: 10px;
}

#navbaricon{
    padding-right: 10px;
}

li.nav-item{
    transition: all 0.5s ease;
    padding-left: 10px;
    padding-right: 10px;
}
li.nav-item:hover{
    border-radius: 10%;
}

a#replystyle:hover{
    background-color: black;
    color: white;
    border: 2px solid white;
}

div#fgtpw{
    transition: 0.1s ease-out;
}

div#fgtpw:hover{
    transform: scale(1.1);
    text-decoration: underline;
}

div#fgtpw:focus{
    transform: scale(1.1);
    text-decoration: underline;
}

.popover {
    white-space: pre-wrap;    
}