/* Regular weight */
@font-face {
    font-family: 'Copperplate CC';
    src: url('/fonts/CopperplateCC/woff/CopperplateCC-Heavy.woff') format('woff'),
         url('/fonts/CopperplateCC/ttf/CopperplateCC-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Bold weight */
@font-face {
    font-family: 'Copperplate CC';
    src: url('/fonts/CopperplateCC/woff/CopperplateCC-Bold.woff') format('woff'),
         url('/fonts/CopperplateCC/ttf/CopperplateCC-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Copperplate CC', Georgia, serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #666;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
      -webkit-text-size-adjust: 100%; /* Prevent text scaling */
}

h1 {
    font-size: 2rem; 
    letter-spacing: 0.2rem;  
}

h2 {
    font-size: 1.1rem;
    font-weight: normal;
}

@keyframes fadeIn {
    from { top: 20%; opacity: 0; }
    to { top: 100%; opacity: 1; }
}

@-webkit-keyframes fadeIn {
    from { top: 20%; opacity: 0; }
    to { top: 100%; opacity: 1; }
}

.container {
    width: 90%;
    max-width: 700px;
    margin-top: 40px;
    animation: fadeIn 2s ease;
    -webkit-animation: fadeIn 2s ease; /* For older browsers */
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
    margin: 30px 0;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.symbol {
    width: 60px;
    height: auto;
    margin: 20px;
    align-self: flex-end;
}

@media (max-width: 48em) {
    body {
        justify-content: flex-start; /* Align items to top on small screens */
        font-size: 0.75rem;
    }

    .symbol {
        align-self: center;
        width: 40px;
    }

    h1 { 
        font-size: 1.25rem;
        letter-spacing: 0.15rem;  
    }

    h2 { 
        font-size: 0.75rem; 
    }
}

/* Unselected link */
a:link,
a:visited {
  color: #666;
}

/* Selected link */
a:hover,
a:active {
  color: #000;
}