.home-section {
    position: fixed;
    justify-items: center;
    align-content: start;
    width: 100%;
    height: 100%;
    padding-top: 6rem;
}

.disabled {
    opacity: 0%;
    pointer-events: none;
    display: none;
}

.home-section .name {
    font-size: 5rem;
    cursor: pointer;
    transform: translateY(0);
}

.home-section .bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    padding-inline: 1rem;
    border-radius: 15px;
    box-shadow: 0px 0px 50px 0px rgb(95, 95, 95);
    z-index: 100;
}

.socials {
    align-items: center;
}

.social-logo {
    height: 2.5em;
    margin-left: 10px;
    transition-duration: 100ms;
    transition-property: scale;
}

.social-logo:hover {
    scale: 1.2;
}

.options {
    margin-top: 8rem;
}

.title {
    font-size: 3rem;
    text-align: center;
}

.buttons {
    display: grid;
    grid-template-columns: 30vw 30vw;
    justify-content: center;
    row-gap: 4rem;
    column-gap: 2rem;
    margin-top: 10vh;
}

.button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    filter: drop-shadow(0 0 0.5rem var(--col));
    transition-duration: 400ms;
    transition-property: scale;
}

.button:hover {
    filter: drop-shadow(0 0 1rem var(--col));
    scale: 1.2;
}

.button img{
    height: 7rem;
    margin-bottom: 1rem;
}

.button span{
    color: var(--col);
}

.about-me {
    margin-top: 10vh;
    width: 50vw;
    justify-content: start;
    font-size: 2rem;
    margin: auto;
}

.text-pop {
    display: inline-block;
    transition-duration: 100ms;
    transition-property: scale;
}

.text-pop:hover {
    scale: 1.1;
    text-shadow: 0 0 0.25rem white;
}

.languages {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    margin-right: 0.25rem;
    margin-top: 5rem;
}

.languages img {
    height: 5rem;
    filter: drop-shadow(0 0 1px white);
    margin: 0.5rem;
    transition-duration: 200ms;
    transition-property: scale;
}

.languages img:hover {
    scale: 1.25;
}

.under-construction {
    margin-top: 20vh;
    background-color: white;
    color: black;
    font-size: 5rem;
    font-weight: 1000;
    text-align: center;
    border-inline: 100vw;
    border-style: solid;
    border-image: repeating-linear-gradient(89.2deg,black, black 2px, white 2px, white 4px) 60;
    border-block: 0px;
    box-shadow: 0px 0px 5px 0px white;
    transition-property: scale;
    transition-duration: 200ms;
    cursor: pointer;
}

.under-construction:hover {
    scale: 1.05;
}