@font-face {
    font-family: 'arcade';
    src: url('fonts/ARCADECLASSIC.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Adjust background color if needed */
}

.container {
    text-align: center;
    padding: 5%; /* Dynamic padding based on the width of the viewport */
    box-sizing: border-box; /* Makes sure padding is included in the width */
    max-width: 800px; /* Maximum size of the container */
    margin: auto; /* Center the container */
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border: 0;
    display: block; /* Ensures the image does not have extra space below */
}

.info {
    color: #fff; /* Adjust text color as needed */
    margin-top: 20px;
}

.info h2 {
    font-size: 5vw; /* Responsive font size */
    font-family: arcade, sans-serif;
    margin: 0;
}

.info a {
    color: #0a66c2; /* LinkedIn's brand color, adjust if needed */
    text-decoration: none;
    font-size: 4vw; /* Responsive font size */
    font-family: arcade, serif;
}

.info a:hover {
    text-decoration: underline;
}

.footer ul li p {
    display: inline;
    color: #BBB;
}

.footer a:visited {
    color: #FFF;
}

@media (min-width: 768px) {
    .info h2 {
        font-size: 32px; /* Fixed font size for larger devices */
        letter-spacing: 3px;
    }

    .info a {
        font-size: 24px; /* Fixed font size for larger devices */
        letter-spacing: 2px;
    }

}
