/* FEATURES */

h1 {
    font-size: 3em; /* Adjust the font size as needed */
    font-weight: bold;
    margin: 0; /* Remove default margin */
    text-align: center;
}

h2 {
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: bold;
    margin: 10px; /* Adjust the margin as needed */
    color: #ccc; /* Lighter color for the subtitle */
    text-align: center;
}

h3{
    text-align: center;
    font-size: 2.5em;
}

h4, section.featured-projects div p{
    text-align: center;
}

.empty-box{
    padding: 0 100px;
}

.title{
    padding: 200px 200px;
    text-align: center;
    background-image: url(../Images/Phryctoria\ Archmaester/PhryctoriaBanner.png);
}

.box{
    width: 700px; height: 200px;
    display: inline-block;
    background-image: url(../Images/Phryctoria\ Archmaester/PhryctoriaLogo.png);
}

.space{
    margin: 50px;
}

.info {
    display: flex;
    justify-content: space-between; /* Adjust spacing between columns */
    align-items: flex-start; /* Align columns to the start of the container */
    gap: 50px; /* Adjust gap between columns if needed */
    padding: 100px 100px; /* Add padding on the sides */
}
.column {
    flex: 1; /* Allow columns to grow and fill space equally */
    max-width: 30%; /* Adjust width of columns if needed */
}
.sub-title {
    font-weight: bold;
    margin-bottom: 10px;
}
.info-text {
    margin-bottom: 50px;
}

.download-here{
    font-size: 30px;
    color: grey;
}

.download-here:hover{
    color: #cdff8c;
}

.level-design, .gameplay, .code{
    margin: 50px 0 50px 0;
}

.level-design-text, .desc-text{
    text-align: center;
    margin: 0 100px;
}

.images{
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

.image{
    padding: 50px 100px;
}

.gameplay-video{
    justify-content: center;
    text-align: center;
    margin: auto 0px;
    display: block;
}

.programs{
    display: flex;
    flex-wrap: wrap;
    gap: 150px; /* Adjust gap between boxes if needed */
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Centers items vertically */
    margin: 100px 0px;
}

.program-box{
    width: 300px;
    height: 100px;
    background-color: grey;
    border: 2px solid white;
    display: flex; /* Apply Flexbox layout */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    color: white; /* Set text color to white */
    font-size: 20px; /* Adjust font size if needed */
    user-select: none; /* Prevent text selection */
}

.program-box:hover {
    background-color: darkgrey; /* Darker color on hover */
}

/* FOOTER 642px*/

footer{
    padding: 70px;
    text-align: center;
    font-family: sans-serif;
}

/* RESPONSIVE RULES */
@media screen and (max-width: 722px){
    header{
        height: 200px;
    }
} 