body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Sixtyfour", sans-serif;


}


.background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(background_1.gif);
    background-repeat: no-repeat;
    background-size: cover;

}


.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
    text-align: center;

}

.section {
    margin: 50px 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
}

.section2 {
    margin: 50px 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: grid;
    justify-items: center;
}

#logo {
    max-width: 256px;
    margin: auto;
}

.logo {
    max-width: 256px;
    margin-bottom: 10%;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.logo:hover {
    opacity: 1;
}

h1,
h2 {
    text-align: center;
    margin-top: 15%;
}

.social-column {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.social-link {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    transition: transform ease-in-out 200ms;
}

.social-link:hover {
    transform: scale(1.2) rotate(30deg);
    color: #971515;
}

.portfolio {
    max-width: 90%;
    margin: 0 auto;
    padding: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 120px;

}

.portfolio img {
    max-height: 400px;
    max-width: 450px;
    height: auto;
    margin: auto;

}

.portfolio img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.portfolio video {
    max-width: 500px;
    height: auto;
    display: none;
}



.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox img {
    display: block;
    margin: 5% auto;
    max-width: 90%;
    max-height: 80%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.projects {
    max-width: 120px;
    margin: auto;
    cursor: pointer;
    padding-top: 15px;
}

.projects:hover {
    background-color: #17799256;
    border-radius: 5px;
}