@font-face {
    font-family: 'D-DIN-Regular';
    src: url("./fonts/D-DIN.woff2");
}

@font-face {
    font-family: 'D-DIN-Bold';
    src: url("./fonts/D-DIN-Bold.woff2");
}

@font-face {
    font-family: 'D-DIN-Medium';
    src: url('/fonts/D-DIN.woff2') format('woff2');
}

body {
    font-family: 'D-DIN-Regular', Arial, sans-serif;
    font-size: 19px;
    margin: 0;
    padding: 0;
    color: black;
    background-image: url("/images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.content {
    padding: 30px;
    text-align: left;
    color: white;
    background-color: black;
    max-height: 80vh; /* Adjust as needed */
    overflow-y: auto;
    max-width: 700px;
    margin: 20px;
    border-radius: 10px;
}

.content::-webkit-scrollbar {
    width: 8px; /* Adjust as needed */
}

.content::-webkit-scrollbar-thumb {
    background: #b80013; /* Color of the scroll thumb */
}

.content::-webkit-scrollbar-thumb:hover {
    background: #ee696e; /* Color on hover */
}

.content h2, h1{
    margin: 0 0 20px 0;
    font-family: 'D-DIN-Bold', serif;
    text-align: center;
    font-size: 35px;
}

.content h3{
    margin: 0 0 20px 0;
    font-family: 'D-DIN-Bold', serif;
    text-align: left;
    font-size: 23px;
}
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;
}

h3 {
    color: #00FFFF;
}

.footer a {
    color: white;
}
.social {
    text-align: center;
}

a {
    color: white;
}

.inlink {
    color: white;
}

a:hover {
    color: #00FFFF;
}

.four-home {
    text-align: center;
}

/* CSS for the social media icons */
.social-media-icons a {
    color: initial; /* Set the initial color */
    transition: color 0.3s ease; /* Transition for color change over 0.3 seconds */
}

.social-media-icons a:hover {
    color: #00FFFF; /* Change to teal on hover */
}