.content-title {
    font-size: 4rem;
    font-weight: light;
    margin-bottom: 1rem;
}

.content-title-home {
    font-size: 4rem;
    font-weight: bolder;
    margin-bottom: 1rem;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 88vh;
    width: 100%;
    padding: 0 2rem;
}

.content-home {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: fit-content;
    width: 100%;
    padding: 0 2rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.content-projects {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: fit-content;
    width: 100%;
    padding: 0 2rem;
}

.content-blog {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: fit-content;
    width: 100%;
    padding: 0 2rem;
    flex-direction: column;
}

.content-blog>.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    flex-direction: column;
    align-self: center;
}

.content-projects>.content-right {
    align-self: center;
}

.content-right,
.content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    height: 100%;
    padding: 2rem;
    font-size: 1.2rem;
}

.content-right {
    gap: 1rem;
    justify-content: center;
}

.content-left {
    gap: 1rem;
    justify-content: flex-start;
}

.buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.animated-underline {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: red;
}

.animated-underline::after {
    content: '';
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(255, 0, 0);
    transform-origin: bottom left;
    color: white;
    transition: transform 0.5s;
    transform: scaleX(0);
}

.animated-underline:hover::after {
    content: "UNSTABLE";
    transform: scaleX(1);
}

.pad,
.placeholder-pad {
    overflow: visible;
    width: 100%;
    height: fit-content;
    border: 1px solid black;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem;
    color: white;
    text-shadow: 2px 2px 2px black;
    position: relative;
    cursor: pointer;
    backface-visibility: hidden;
}

.placeholder-pad {
    background: url('../img/placeholder.png');
}

div[id*='-pad'],
.placeholder-pad {
    filter: grayscale(100%);
    transition: transform 0.5s, background-size 0.5s, filter 0.5s;
    background-size: 100%;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

div[id*='pad']:hover,
.placeholder-pad:hover {
    transform: translateX(0.75rem);
    filter: grayscale(0%);
    z-index: 99;
    background-size: 105%;
}

#a-pad:hover,
#b-pad:hover,
#c-pad:hover,
#c-pad-archive:hover,
#d-pad:hover {
    background-size: 105%;
}

#a-pad {
    background: url('../img/project-1.png');
    background-size: 100%;
    background-position: center;
}

#b-pad {
    background: url('../img/project-2.png');
    background-size: 100%;
    background-position: right;
}

#c-pad {
    background: url('../img/project-3.png');
    background-size: 100%;
    background-position: center;
}

#c-pad-archive {
    background: url('../img/project-3-archive.png');
    background-size: 100%;
    background-position: center;
}

#d-pad {
    background: url('../img/project-4.png');
    background-size: 100%;
    background-position: center;
}

u {
    text-decoration: underline;
    text-decoration-color: red;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.about>img {
    width: 18px;
    height: 18px;
}

.project-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
}

.rev {
    filter: invert(100%);
    width: 18px;
    height: 18px;
}