html {
  font-size: 14px;
}

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

::selection {
    background: #ff6e6c;
    color: white;
}

/*Feuer fuchs*/
::-moz-selection {
    background: #ff6e6c;
    color: white;
}


.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;
}

.background-black {
    background: #1c1c1e;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #1c1c1e;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #ff6e6c;
    max-width: 500px;
}

.navbar-custom {
    background-color: #1c1c1e; 
}

    .navbar-custom .nav-link {
        color: #d0ccc6;
    }

        .navbar-custom .nav-link:hover {
            color: #ff6e6c;
        }

    .navbar-custom .navbar-brand {
        color: #d0ccc6;
    }


.codeText {
    font-family: 'Cascadia Code';
    color: #d0ccc6;
}

.nameHeader {
    margin-top:25px;
    color: #ff6e6c;
}

.smallInfo {
    font-size: 12px;
    max-width: 500px;
}

.shortInfo {
    font-size: 14px;
    margin-top: 1em;
    max-width: 500px;
}

.experience{

}


.experience-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background-color: #1c1c1e;*/
    background-color: #313133;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    color: #fff;
    transition: background-color 0.2s ease;
    margin-bottom: 11px;
}

    .experience-btn:hover {
        background-color: #2a2a2c;
        color: #ff6e6c;
    }

.experience-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin-right: 15px;
    object-fit: cover;
    border-radius: 6px;
}

.experience-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.company-name {
    font-weight: 600;
    font-size: 14px;
}

.company-role {
    font-weight: 400;
    font-size: 12px;
    color: #a0a0a0;
}

.experience-date {
    font-size: 12px;
    color: #888;
    margin-left: 15px;
}



.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}


.popup-content {
    background-color: #1c1c1e;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: popupFade 0.3s ease-out;
    z-index: 10;
}

.close-popup {
    position: absolute;
    color: #d0ccc6;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
}


.popup-container {
    width: 400px;
}

@media screen and (max-width: 768px) {
    .popup-container {
        max-width: 320px;
    }
}

.popup-img-inside {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}
.company-role-inside {
    margin-top: 1px;
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    color: #a0a0a0;
}

.experience-date-inside {
    margin-top: 1px;
    text-align: left;
    font-weight: 400;
    font-size: 10px;
    color: #8b8b8b;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background: #444;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
}

.popup-header {
    margin-top: 15px;
    text-align: left;
    font-size: 22px;
}

.main-popup-text {
    margin-top: 25px;
    text-align: left;
    font-size: 12px;
}

.experience-header{
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 20px;
}

.skills {

}

.skills-header {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 20px;
}

.skill-main {
    font-size: 12px;
    margin-bottom: 3px;
}

.skill-text {
    font-size: 10px;
    align-items: center;
    margin-left: 10px;
    color: #898682;
}

.no-wrap {
    display: flex;
    align-items: center;
}

@keyframes popupFade {
    from {
       
        opacity: 0;
        transform: scale(0.9);
    }

    to {
    
        opacity: 1;
        transform: scale(1);
    }
}
