/******** CONTENT DESIGN *********/
body header, footer {
    overflow: hidden;
    height: 250px;
    width: 100%;
    background-color: rgb(31, 138, 142);  
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
}

body footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    color: white;
}

body {
    box-sizing: border-box;
    background-color: rgb(232, 239, 246);
}

body > header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-evenly;
    max-width: 960px;
    width: 100%;
}

@media (max-width: 768px) {
    .header-content {
        padding: 20px;
    }
}

h1 {
    margin-top: 50px;
    margin-bottom: 25px;
}

h3 {
    margin-left: 25px;
    margin-top: 50px;
    margin-bottom: 25px;
}

a {
    text-decoration: none;
    color: white;
}

.profileFoto {
    width: 50%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
}

article {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
}

.content {
    max-width: 960px;
    width: 100%; 
    text-align: justify;
}

@media (max-width: 768px) {
    .content {
        padding: 20px;
    }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1;}
}

.blinking-btn {
    animation: blink 2s infinite;
}

/******** SKILL LEVEL DESIGN *********/
.skill-overview {
    display: grid;
    grid-template-columns: repeat(3, 0fr);
    column-gap: 20px;
    row-gap: 20px;
    margin: 20px;
}

@media (max-width: 768px) {
    .skill-overview {
        column-gap: 5px;
        row-gap: 5px;
        margin: 5px;
    }
}

.skill-card {
    padding: 10px 0px 0px 0px;
    width: 240px;
    height: 415px;
    max-height: 415px;
}

@media (max-width: 768px) {
    .skill-card {
        width: 110px;
        height: 260px;
        max-height: 300px;
    }
    .card-title {
        font-size: small;
    }
    .card-text {
        font-size: small;
    }
}

.skill-pill {
    max-width: 50px;
    max-height: 50px;
    text-align: center;
    font-size: 10px;
}

@media (max-width: 768px) {
    .skill-pill { 
        max-width: 20px;
        max-height: 20px;
        font-size: 5px;
    }
 
}

.link {
    text-align: center;
}