body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
    padding-bottom: 10px;
}
li {
    text-align: left
}
.btn-custom {
    background: linear-gradient(90deg, #000899, #00d4ff);
    color: white;
    font-size: 20px;
    line-height: 10px;
    font-weight: 700 !important;
    padding: 15px;
}
.btn-custom:hover {
    background: linear-gradient(90deg, #000899, #00d4ff);
    color: white;
    transform: scale(1.2);
    transition: 0.3s;
}
.btn-danger {
    background: linear-gradient(90deg, #ff0000, #ffa9a9);
    color: white;
    font-size: 20px;
    line-height: 10px;
    font-weight: 700 !important;
    padding: 15px;
}
.btn-danger:hover {
    background: linear-gradient(90deg, #ff0000, #ff8888);
    color: white;
    transform: scale(1.2);
    transition: 0.3s;
}
.custom-link {
    color: #69f069; /* Change this to any color you prefer */
    text-decoration: none; /* Optional: Remove underline */
}
.custom-link:hover {
    color: #69f069; /* Change this to any color you prefer for hover state */
    text-decoration: underline;
}
.card-body {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}
.card-header {
    background: linear-gradient(45deg, #000899, #00d4ff);
    color: white;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.custom-container {
    text-align: center;  /* need to fix this , add padding -swap */
}
.container {
    text-align: center;
    padding-top: 60px;
}
@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
