@font-face {
    font-family: 'Adobe Ming';
    src: url('assets/AdobeMingStd-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #230462;
    position: relative;
}

.logo-container {
    width: 80%;
    max-width: 400px;
    padding: 20px;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

.copyright {
    position: absolute;
    bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 8pt;
    text-transform: uppercase;
    color: #8BA6FF;
} 