@import 'bootstrap-4.3.1';

body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    text-align: center;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-3deg);
    }
    90% {
        transform: rotate(1deg);
    }
}

#header:hover {
    animation: wiggle 0.6s ease-in-out;
}

.studio-image {
    transition: transform 0.3s ease-out;
}

.studio-image:hover {
    animation: wiggle 0.6s ease-out;
    cursor: pointer;
}

#input-section, #tournament-section, #tier-list-section {
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

#name-input {
    width: 100%;
    height: 100px;
}

#input-section, #thumbnail-container {
    display: block; /* Initially visible */
}

#tournament-section {
    display: none; /* Initially hidden */
}


.button,
.btn,
button {
    margin: 10px;
    font-family: impact; /* Added font-family */
    color: #ffffff;
    font-size: 24px;
    text-shadow: 1px 1px 0px #410675;
    box-shadow: 1px 1px 6px #000000;
    padding: 10px 25px;
    border-radius: 0px;
    border: 0px solid #000000;
    background: #600eee; /* Purple background color */
}

.btn:hover,
button:hover {
    color: #ffffff;
    background: #b97dff; /* Purple gradient background on hover */
    background: linear-gradient(to top, #b97dff, #600eee);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1000;
}

#matchup {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

#name1-container,
#name2-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

#tier-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    padding-top : 0px;
padding-bottom : 0px;
margin-bottom : 0px;
border-color : rgb(0, 0, 0);
border-width : 2px;
border-style : solid;
}

.tier {
    width: 80%;
    margin: 10px 0;
    padding: 10px;
}

.custum-file-upload {
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e8e8e8;
    background-color: #212121;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px #e8e8e8;
}

.custum-file-upload .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custum-file-upload .icon svg {
    height: 80px;
    fill: #e8e8e8;
}

.custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custum-file-upload .text span {
    font-weight: 400;
    color: #e8e8e8;
}

.custum-file-upload input {
    display: none;
}
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; /* Adjust the gap between the grid items */
    margin-bottom: 16px; /* Add some margin below the grid */
  }
