html {
    background-color: black;
}

body {
    background-color: black;
    color: white;
}

.lead {
   color: #c6c6c6;
}

.hero-section {
    background-image: url('images/bg.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 1px 1px 30px #f7c9ae;
}

.hero-section .lead {
    text-shadow: black 1px 1px 10px;
    color: rgb(223, 255, 243);
}

.card {
    border: none;
    transition: transform 0.3s;
    color: #d3dcff;
}

.card:hover {
    transform: translateY(-10px);
}

.fa-3x {
    color: #0d6efd;
}

