.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (max-width: 500px) {
    .projects {
        display: flex;
    }
}

.main-content {
    animation: 
        fade-in-left 0.6s ease-in-out,
        opacity-add 0.6s ease-in-out;
}

#focus {
    display: none;
}

#focus-content {
    margin-top: 32px;
}

#focus-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 25vh;
    z-index: -100;
}

.focus-icon-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#focus-icon {
    width: 96px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    aspect-ratio: 1;
    border-radius: 24px;
}

#focus-name {
    display: inline-block;
    margin: 0;
    margin-top: 16px;
    padding: 0;
    line-height: 1;
}

#focus-description {
    display: inline-block;
    margin: 0;
    margin-top: 4px;
    padding: 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.4);
}

#focus-content {
    padding-top: 0;
}

#focus-url {
    margin-top: 32px;
    box-shadow: rgba(0,0,0,0.1) 4px 4px 4px;
}

#focus-textover {
    box-shadow: rgba(0,0,0,0.1) 4px 4px 4px;
    padding: 0px 16px 0px 16px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 8px;
    margin-top: 16px;
}

#focus-textover p {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
}

#focus-textover strong {
    color: white;
}