html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: white!important;
    background-image: linear-gradient(-225deg, #231557 0%, #44107A 29%, #FF1361 67%, #fa9b48 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: white;
}

#title {
    font-size: 70px;
    margin-top: 5rem;
    text-align: center
}

.left {
    text-align: left;
}

.right {
    font-size: 20px;
    text-align: right;
    margin-top: 10rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.item {
    opacity: 0;
    transition: opacity 1s ease;
    margin: 150px 0px;
    padding: 30px;
    background: rgba(60, 60, 60, .5);
    border-radius: 20px;
}

/* Quand l'élément devient visible */
.item.fade-in {
    opacity: 1;
}

img {
    width: 100%;
    margin: 2rem 0;
}

.removed {
    color: red;
}

/* Rendre l'arrière-plan du tableau et des cellules transparent */
.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent; /* si tu as .table-striped */
    --bs-table-hover-bg: rgba(255,255,255,0.08); /* optionnel, ou transparent */
    background-color: transparent !important; /* pour l'élément <table> lui-même */
}


/* Les cellules reçoivent un background via Bootstrap : on force transparent */
.table > :not(caption) > * > * {
    background-color: transparent !important;
}

.form-control,
.form-control:focus,
textarea.form-control,
.form-select,
.form-select:focus {
    color: inherit; /* ou #fff si fond sombre */
    box-shadow: none; /* option: retire le glow bleu */
    background: rgba(60, 60, 60, .5) !important;
    border-radius: 20px;
}


.technos span {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.techno-csharp {
    background-color: #823eb7;
}

.techno-javascript {
    background-color: #f7df1e;
    color: black;
}

.techno-dotnet {
    background-color: #512bd4;
}

.techno-azure-devops {
    background-color: #0078d7;
}

.techno-asp {
    background-color: #0078d7;
}

.techno-cicd {
    background-color: #4caf50;
}

.techno-sql-server {
    background-color: #cc2927;
}

.techno-php {
    background-color: #777bb4;
}

.techno-mysql {
    background-color: #f29111;
}

.techno-python {
    background-color: #3572a5;
}

.techno-vba {
    background-color: #217346;
}

.techno-gitlab {
    background-color: #f29111;
}

.techno-angular {
    background-color: #F70746;
}


