body {
    background: linear-gradient(65deg, #0840FF, rgba(81, 0, 255, 0.75));

}

.navbar {
    /* background-color: rgba(8, 66, 255, 0.25); */
    background-color: rgba(0, 0, 0, .75);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .25);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, .75) !important;
}

.navbar.navbar-expand-lg .navbar-brand {
    font-size: 2rem;
    margin-left: 3rem;
    font-weight: bold;
    color: white;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-toggler {
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #FFFFFF !important;
}

.navbar-nav .nav-link:hover {
    /* font-weight: 600; */
    color: #969696 !important;
}

.nav-item {
    font-size: 1.125rem;
    margin-right: 3rem;
}

.container-fluid {
    padding-top: 5%;
    display: flex;
    flex-direction: column;
}

.img-fluid {
    max-width: 35% !important;
}

#headline {
    justify-content: center;
}

#description {
    padding-top: 20%;
}

.bullets {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.arrow-div {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 15%;
}

@keyframes bouncing {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 20px;
    }

    100% {
        bottom: 0;
    }
}

.arrow {
    animation: bouncing 1s infinite ease-in-out;
    display: flex;
    height: 50px;
    width: 50px;
    position: absolute;
}

input,
textarea {
    margin-bottom: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

input::placeholder, textarea::placeholder {
    color: #000;
}

button {
    padding: 10px;
    background-color: #FFFFFF;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #999;
}