/* StyleSheet Specific to the home page */
.Home {
    color: white;
    text-align: center;
    display: inline-block;
}

.Home #Summary {
    display: inline-block;
    background-color: rgba(36, 75, 38, 0.856);
    border-radius: 5px;

    border: 1px, solid, rgba(255, 255, 255, 0.288);

    width: 80%;
    height: auto;
}

.Home hr {
    width: 85%;
    transition: 0.5s;
}

.Home b {
    color: lightblue;
    transition: 0.5s;
}

.GameDisplayBox {
    text-align: center;
    display: inline-block;
    align-items: center;

    width: 90%;
    height: auto;

    background-color: rgb(47, 48, 47);
    border-radius: 16px;
    border: 2px, solid, black;
}

.GameDisplayBox ul { 
    align-items: center; 
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}
.GameDisplayBox li { align-items: center; justify-content: center; display: inline-block; padding: 20px; }

.GameDisplayBox img {
    display: inline-block;
    width: 90%;
    height: auto;
    border-radius: 15px;
    border: 2px, solid, black;
}

.gameHyperLink {
    border: 2px, solid, white;
    border-radius: 10px; 
    width: 90%;
    height: 32px;

    background-color: transparent;
    color: white;
    transition: 0.5s;
}

.gameHyperLink:hover {
    border: 2px, solid, orange;
    color: orange;
    font-size: 20px;
    transition: 0.5s;
}

.Technologies {
    text-align: center;
    display: inline-block;
    align-items: center;

    width: 90%;
    height: auto;

    background-color: rgb(47, 48, 47);
    border-radius: 16px;
    border: 2px, solid, black;
}

.TechnologiesList {
    list-style: none;
    display: inline-block;
}
.TechnologiesItem {
    padding: 10px;
    display: inline-block;
}
.TechnologiesImage {
    display: inline-block;
    width: 100%;
    height: 12vh;
}

/* Past Work Display Styles */
.PastWorkDisplay {
    background-color: rgb(47, 48, 47);
    border: 2px solid black;
    border-radius: 15px;

    display: inline-block;
    justify-content: center;   /* center UL horizontally */
    align-items: center;       /* center UL vertically */
    
    width: 90%;
    height: auto;
}

.PastWorkDisplay ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;

    list-style: none;
    margin-bottom: 50px;
    margin-right: 25px;
}

.PastWorkDisplay ul li {
    display: flex;
    justify-content: center;
}

.PastWorkDisplay ul li div {
    width: 100%;
}

.PastWorkDisplay ul li div iframe {
    width: 90%;
    aspect-ratio: 16 / 9; /* change if needed */
    height: auto;

    border: 2px solid black;
    border-radius: 10px;
}

a {
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

#Summary a:hover {
    font-size: 20px;
    transition: 0.5s; 
}
