.title {
    text-align: center;
    font-size: 50px;
    margin: 20px 0px;
}

.header {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.link{
    text-decoration: none;
}

.link:hover {
    color: #333;
}


/* Skills */

.skills-page {
    padding: 50px;
    text-align: center;
    font-size: 35px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.skills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skills-col {
    flex: 0 0 25%;
    max-width: 25%;
    /*
    min-width: 300px;
    max-width: 400px;
    */
    width: 100%;
    margin: 10px;
    padding: 20px;
    border: 3px solid black;
    border-radius: 10px;
    transition: 0.3s;
}

.skill {
    text-align: center;
}

.skill-buttons-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.skill-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.skill-order-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.skill-buttons-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
}

.skill-buttons-pushable:hover {
    filter: brightness(110%);
}

.skill-buttons-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
}

.skill-buttons-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      hsl(340deg 100% 16%) 0%,
      hsl(340deg 100% 32%) 8%,
      hsl(340deg 100% 32%) 92%,
      hsl(340deg 100% 16%) 100%
    );
}

.skill-buttons-front {
    display: block;
    position: relative;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
}

.skill-buttons-pushable:hover .skill-buttons-front {
    transform: translateY(-6px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
}

.skill-buttons-pushable:active .skill-buttons-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.skill-buttons-pushable:hover .skill-buttons-shadow {
    transform: translateY(4px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
}

.skill-buttons-pushable:active .skill-buttons-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.skill-buttons-pushable:focus:not(:focus-visible) {
    outline: none;
}

.skill-images {
    display: flex;
    flex-direction: column; /* find out if necessary */
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.skill-images.two-icons {
    flex-direction: row;
}

.skill-images img {
    width: 150px;
    height: 150px;
    margin: 5px;
    transition: 0.3s;
}

.skill-images.wide-logo img {
    width: 300px;
    height: 150px;
}

.skill-images img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.skill-name {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
}

.skill-description {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 30px;
}

.skill-description a {
    transition: 0.3s;
}

.skill-description a:hover {
    color: #333;
    transition: 0.3s;
}