@font-face {
    font-family: 'ShantellSans';
    src: url('../font/ShantellSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff8f8;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.locked {
    background-image: url('../img/lock_background.svg');
    background-repeat: repeat;
    background-size: 72px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.download-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

img {
    width: min(60vw, 400px);
    height: min(60vh, 400px);
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.text {
    font-family: 'ShantellSans', sans-serif;
    font-style: italic;
    color: #ff7ea9;
    font-size: min(10vw, 5rem);
    text-align: center;
}
