Newer
Older
.base-width-height {
width: 75vw;
height: 100vh;
}
.fixed-pos {
top: 0;
left: 0;
position: fixed;
}
.fade-in-out > img {
opacity: 0;
animation: fadeIn 5s;
}
.br-magenta{
background-color: magenta;
}
.br-black{
background-color: black;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}