body{
    height: 100vh;
    background-image: url('/img/Background.png');
}
.alert-danger{
    color: red;
}

.navbar{
    background-color: transparent;
}
.main-logo img{
    width: 300px;
}
.tiger-background{
    background-image: url('/img/Tiger.png');
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: 100% 100%;

}



.tiger-background a{
    text-decoration: none;
    color: white;
}
.tiger-background p{
    font-size: 29px;
    color: white;
}
.col-form-label{
    color: white;
}
.form-control{
    background-color: transparent;
    color: white;
}
.form-control:focus{
    background-color: transparent;
    color: white;

}
.social ul{
list-style: none;
align-items: center;
}
.social ul li{
    padding-bottom: 10px;
    padding-right: 19px;
}
.social img {
    width: 50px;
}
.social{
    justify-content: end;
}
#contactForm{
    padding-top: 5rem;
}
.links a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}
.links li {
    margin-left: 41px;
}
.links{
    display: flex;
    padding: 0;
}
.links li::marker {
    color: white;
    font-size: 27px;
}
.sendBtn{
    justify-content: end;
}
.sendBtn button {
    background-color: transparent;
    color: white;
    padding: 5px 36px;
}

@media screen and (max-width: 768px) {
    .links{
        display: block;
    }
    .tiger-background{
        background-image: url('');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 100% 100%;
    
    }
    .info.tiger-background{
        height: 46vh;

    }
    .sendBtn{
        justify-content: center;
    }
    .main-logo{
        text-align: center;
    }
    .social{
        justify-content: center;
    }
    .social ul{
        padding: 0;
    }
    #contactForm {
        padding-top: 2rem;
    }

    .tiger-background-mobile{
        background-image: url('/img/Tiger.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    
    }
  }
  .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:white;
	color:black;
	border-radius:50px;
	text-align:center;
  font-size:30px;
 
  z-index:100;
}

.my-float{
	margin-top:16px;
}

#contact {
    color: white;
    height: 100vh;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.bg {
    /* Full height */
    height: 100vh;
    /* Center and scale the image nicely */
    display: flex;
    justify-content: center;
    align-items: center
}

.welcoeLogo img {
    max-width: 100%;
    width: 49rem;
}
.welcoeLogo img:hover {
	animation: float 1.5s ease-in-out infinite;

}
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}