.alert.alert-success {
    color: green;
    text-align: center;
    background-color: lightgreen;
    padding: 10px;
    width: 50%;
    margin: auto;
    margin-top: 10px;
}
.alert.alert-danger {
    color: #CE0D0D;
    text-align: center;
    background-color: lightcoral;
    padding: 10px;
    width: 50%;
    margin: auto;
    margin-top: 10px;
}
.invalid-feedback {
    color: #CE0D0D;
    font-size: 18px;
    margin-top: 5px;
}

.projectCard {
    height: 250px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.projectCard:hover {
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    animation: glow 1.5s infinite alternate;
    cursor: pointer;
}
.projectImage {
    display: block;
    max-width: 75%;
    padding-top: 20px;
    margin: auto;
    vertical-align: auto;
}
.projectImage:hover {
    transform: scale(1.1);
}
.cardProjectFooter {
    color: white;
    border-top: none;
}
.border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    box-sizing: border-box;
    pointer-events: none;
}
.projectCard .border-animation {
    animation: burn 5s infinite forwards;
}

.section {
    padding: 60px 40px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
    width: 90%;
    margin: 0 5%;
    margin-top: 100px;
}

.supportCard {
    color: white;
    border-radius: 16px;
    margin-top: 100px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 120.71%);
}
.supportCard .card-header {
    border: none;
}

.default-btn {
    font-size: 0.97vw;
    padding: 8px 20px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}
.default-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.3s ease-in-out;
    z-index: -1;
}
.default-btn:hover {
    transform: scale(1.1);
    color: #000;
    transition: background-color 0.9s ease;
}
.default-btn:hover::before {
    left: 0;
}


@keyframes glow {
    from {
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff, 0 0 70px #ff00ff;
    }
    to {
        text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff, 0 0 70px #ff00ff, 0 0 80px #ff00ff;
    }
}

@keyframes burn {
    0% {
        border-color: red;
        box-shadow: 0 0 5px red;
    }
    25% {
        border-color: orange;
        box-shadow: 0 0 10px orange;
    }
    50% {
        border-color: yellow;
        box-shadow: 0 0 15px yellow;
    }
    75% {
        border-color: orange;
        box-shadow: 0 0 10px orange;
    }
    100% {
        border-color: red;
        box-shadow: 0 0 5px red;
    }
}

@media screen and (max-width: 640px) {
    .cardProjectFooter {
        font-size: 20px;
    }
}
