body {
	font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #353535;
	margin: 0;
	width: 100%;
	height: 100%;
    overflow-x: hidden;
    background-color: #FCF8F7;
}

main {
    height: 100%;
}

html {
  scroll-behavior: smooth;
}



/* Navbar CSS */

.bg-nav {
    background-color: #353535;
}

.dropdown-item:active {
    background-color: #1c8d8f;
}


/* Header CSS */

.header-box {
    box-shadow: 0px 10px 10px rgba(158,129,114,0.2);
    padding-bottom: 70px;
    background-color: white;
    border-top: white solid 70px;
    display: block;
    overflow: auto;
}

@media only screen and (min-width: 992px) {
    .header-box {
        padding-top: 15vh;
        padding-bottom: 20vh;
    }
}

#lottie{
    display:block;
    overflow: hidden;
    text-align: center;
    opacity: 1;
    margin-top: 30px;                     /* to vertically center the left header content*/
}

.header-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 20px;
    color: #353535;
}

.btn-rounded, .btn.rounded:visited {
    border-radius: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1c8d8f;
    background-color: white;
    border: 2px solid #1c8d8f;
    width: 200;
    box-shadow: none !important;
    outline: none;
    margin-bottom: 20px;
}

.btn-rounded:hover, .btn-rounded:active {
    color: white;
    background-color: #1c8d8f;
    box-shadow: none !important;
    outline: none;
}


/* Main CSS */

.gif-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 6px 30px 0px rgba(158,129,114,0.2);
    padding: 5%;
    margin-left: 10px;
    margin-right: 10px;
}

.gif {
    width: 100%;
}


/* Share Buttons */

.share {
    display: flex;
    list-style: none;
    transition: 1s;
    width: 150px;
    height: 40px;
    cursor: pointer;
}

.share li {
    position: absolute;
    margin-left: 4px;
}

.share:before {
    content:"\f1e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 40px;
    margin: 0 3px;
    /*position: absolute;*/
    width: 150px;
    height: 40px;
    background-color: white;
    color: #bababa;
    border: 1.5px solid #bababa;
    border-radius: 30px;
    transition: 0.5s;
    z-index: 1;
}

.share:hover:before {
    width: 40px;
    background-color: #1c8d8f;
    color: white;
    border: none;  
}

.share li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 3px;
    text-align: center;
    background-color: #353535;
    color: white;
    border-radius: 50%;
    display: block;
    transition: 1s;
}

.share li:nth-child(1) a {
    background-color: #3b5998;
}

.share li:nth-child(2) a {
    background-color: #35465d;
}

.share li:nth-child(3) a {
    background-color: #bd081c;
}

.share:hover li:nth-child(1) a {
    transform: translateX(43px) rotate(360deg);
    transition-delay: 0.4s;
}

.share:hover li:nth-child(2) a {
    transform: translateX(88px) rotate(360deg);
    transition-delay: 0.2s;
}

.share:hover li:nth-child(3) a {
    transform: translateX(133px) rotate(360deg);
    transition-delay: 0.0s;
}


/* Like Button */

.button-container {
    display: flex;
    align-items: flex-start;
    transition: 1s;
    margin: 15px 0;
}


.like1, .like2, .like3, .like4, .like5, .like6 {
    display:flex;
    width: 40px;
    min-width: 40px;
    height: 40px;

    transition: 1s;
    margin-right: 7px;
    bottom: 0px;
    
    background-color: white;
    color: #bababa;
    border-radius: 30px;
    cursor: pointer;
}


.grey-border {
    border: 1.5px solid #bababa;
    transition: none;
}

.visited-button {
    background-color: #1c8d8f;
    border: none;
    transition: none;
    color: white;
}


/* Download Button */

.download {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    background-color: white;
    color: #bababa;
    border-radius: 30px;
    margin-right: 3px;
    font-size: 20px;
    border: 1.5px solid #bababa;
    transition: 0.5s;
}

.download:hover {
    color: white;
    border: 1.5px solid #1c8d8f;
    background-color: #1c8d8f;
}


/* Tooltips */

.tooltip {
    font-size: 15px;
    margin-top: 3px;
    font-family: 'Roboto', sans-serif;
}


/* Footer */

footer {
    height: 100px;
    background-color: #353535;
    color: white;
    font-size: 15px;
}

.index-footer {
    padding-top: 35px;
}


/* Back to Top Button*/

#back-to-top {
    position: fixed;
    right: 25px;
    bottom: 7%;
    height: 50px;
    width: 50px;
    font-size: 30px;;
    border-radius: 30px;
    
    background-color: #1c8d8f;
    color: white;
    text-align: center;
    line-height: 50px;
    z-index: 1;
}

.btt {
    opacity: 0;
    transition: 0.8s;
}

.show-btt-btn {
    opacity: 1;
    transition: 0.8s;
}

@media only screen and (max-width: 650px) {
    #back-to-top {
        display: none;
    }
}


/* About Page */

h1 {
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;    
}

.about-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 17px;
    color: #353535;
    margin-bottom: 30px;
}

.about-box {
    box-shadow: 0px -10px 10px rgba(158,129,114,0.2);
    padding-bottom: 30px;
    background-color: white;
    border-top: white solid 30px;
    display: block;
    overflow: auto;
}

@media only screen and (min-width: 992px) {
    .about-box {
        padding-top: 15vh;
        padding-bottom: 20vh;
    }
}














