@font-face {
    font-family: "AudiType-Bold";
    src: url("../../fonts/AudiType-Bold_4.03.woff2") format("woff2"),
         url("../../fonts/AudiType-Bold_4.03.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AudiType-Normal";
    src: url("../../fonts/AudiType-Normal_4.03.woff2") format("woff2"),
         url("../../fonts/AudiType-Normal_4.03.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: "AudiType-Normal", Calibri, -apple-system, Verdana, sans-serif;
    font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -webkit-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -moz-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -ms-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -o-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    margin: 0 auto; /* Center body horizontally */
    padding: 0;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center elements horizontally */
    height: fit-content;
    background-color: #1d2732;
    color: #f4f4f4;
    max-width: 1000px; /* Limit body width */
    min-height: 100vh;
}

footer{
    margin-top: auto;
    margin-bottom: 20px;
}

.webfont { font-family: "AudiType-Bold", monospace; }

p {
    margin: auto 0;
    text-align: center; /* Center the text */
}

p a i{
    margin-top: 10px;
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, .socials{
    font-family: "AudiType-Bold", monospace;
    font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -webkit-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -moz-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -ms-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
    -o-font-feature-settings: "kern" 1 ,"liga" 1, "calt" 1, "locl" 1;
}

h1 {    
    text-align: center;
    margin: 10px 0;
}
h3 {
    text-align: left;
}

.socials {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.photo-credit{
    text-align: center;
}

a {
    text-decoration: none;
    color: #f4f4f4;
}
.carousel {
    position: relative;
    width: 80%;
    max-width: 1000px;    
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 20px; /* Add spacing below the carousel */
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%; /* Ensures the image takes up the full width of the container */
    height: auto;
    object-fit: contain; /* Ensures the image fills the container without distortion */
    flex-shrink: 0;
    display: block;
}

.mod-list {
    display: flex;
    width: 100%; /* Optional: Set a width for the mod list */
    text-align: center; /* Center the text inside the mod list */
    width: 100%;
}

.mod-list .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.mod-list .column {
    flex: 0 0 50%; /* Two columns per row */
    max-width: 50%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    text-align: left;
}

@media (max-width: 700px) {
    .mod-list .column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

ul{
    padding-inline-start: 15px;
}

li{
    font-size: small;
}