body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: rgb(54, 53, 53);
    color: #fff;
    min-height: 100vh;
}

header {
    background-color: rgb(97, 12, 12);
    color: #fff;
    padding: 1em;
    text-align: center;
}

main {
    flex: 1;
    padding: 2em;
    text-align: center;
}

section {
    margin-bottom: 2em;
}

.social-media-icons {
    margin: 1em 0;
}

.social-media-icons a {
    margin: 0 10px;
    justify-content: center;
}

.icon {
    width: 40px;
    padding: 10px;
    transition: transform 0.3s;
}

.icon:hover {
    transform: scale(1.1);
}

.projects {
    margin-top: 10%;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}

button {
    background-color: #6d0b0b;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: rgb(101, 98, 98);
    transform: scale(1.05);
}

button:active {
    background-color: #6d0b0b;
    transform: scale(0.98);
}

button:disabled {
    background-color: #777;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

button:disabled:hover {
    background-color: #777;
    transform: none;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    background-color: #6d0b0b;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-right: 10px;
}

.custom-file-upload:hover {
    background-color: rgb(101, 98, 98);
    transform: scale(1.05);
}

.custom-file-upload:active {
    background-color: #6d0b0b;
    transform: scale(0.98);
}

.intro-video {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 12px;
    margin-top: 1rem;
}

/* Uploaded videos section */
#VidSelection {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
}

#VidSelection h2 {
    text-align: center;
}
#videoContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

#videoContainer div {
    width: 280px;
}

#videoContainer video {
    width: 280px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    background-color: black;
}