/*
body {
    background-color: rebeccapurple;
}
*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    min-width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-item-title {
    display: block;
    font-size: 30px;
}
.header-item-value {
    display: block;
    text-align: center;
    font-size: 25px;
}

.main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
}
.main.home {
    font-family: Sans-serif;
}

.main .title {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 20px;
}

#feedback {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 50%;
    border: 1px rgb(215, 90, 90) solid;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    z-index: 11;
    animation-name: fade-in;
    animation-duration: 1s;
}
@keyframes fade-in {
    from {top: -100px; opacity: 0;}
    to {top: 0; opacity: 1;}
}
@keyframes fade-out {
    from {top: 0; opacity: 1;}
    to {top: -100px; opacity: 0;}
}

#feedbackMessage {
    font-size: 20px;
    word-break: break-all;
}

.blue-button {
    background-color: transparent;
    color: black;
    border: 4px solid #008CBA;
    font-weight: bold;
    padding: 5px 10px 5px 10px;
}
.blue-button:hover, .blue-button.invert {
    background-color: #008CBA;
    color: white;
}
.wiebel {
    animation: wiebel 2.4s infinite;
    animation-delay: 2s;
}
@keyframes wiebel {
    0% {transform: rotate(0deg);}
    5% {transform: rotate(5deg);}
    10% {transform: rotate(-5deg);}
    15% {transform: rotate(5deg);}
    20% {transform: rotate(0deg);}
    100% {transform: rotate(0deg);}
}
.red-button {
    background-color: transparent;
    color: black;
    border: 4px solid #f44336;
    font-weight: bold;
    padding: 5px 10px 5px 10px;
}
.red-button:hover, .red-button.invert {
    background-color: #f44336;
    color: white;
}

#feedbackButtons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-device-width: 500px) {
    #feedbackMessage {
        font-size: 8px;
    }
    .blue-button {
        position: absolute;
        bottom: 70px;
        right: 15px;
    }
}

#project-list {
    list-style: none;
    padding: 0;
}

#project-list a {
    font-size: 20px;
    color: #009879;
    text-decoration: none;
    display: flex;
    align-items: center;
}
#project-list a:hover {
    color: #00564d;
}
#project-list a span {
    height: 100%;
}

#project-list li {
    margin-bottom: 25px;
}
#project-list .project-icon {
    height: auto;
    width: 30px;
    margin-right: 20px;
}

#language-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}
#language-buttons button {
    padding: 5px 10px;
    font-size: 14px;
    border: 2px solid #333;
    background-color: transparent;
    cursor: pointer;
    display: block;
    margin-bottom: 10px;
}