/* CSS Variables for Colors */
:root {
    --color-warning: #a1470b;
    --color-border-yellow: #f6c336;
    --color-text-primary: #000000;
}

/* Body styles */
.short-link-body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header section with warning */
.warning-header {
    text-align: center;
    color: var(--color-warning);
}

/* Warning icon */
.warning-icon {
    width: 32px;
    height: 32px;
}

/* Main title */
.main-title {
    font-weight: 700;
    font-size: 24px;
}

/* Subtitle */
.subtitle {
    font-weight: 500;
    font-size: 16px;
}

/* Image container wrapper */
.image-container-wrapper {
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

/* Circular image container */
.circular-image-container {
    border-radius: 50%;
    width: 293px;
    height: 293px;
    overflow: hidden;
    border-style: solid;
    border-width: 5px;
    border-color: var(--color-border-yellow);
}

/* Image inside container */
.container-image {
    object-fit: cover;
    width: 100%;
}

/* Footer section */
.footer-section {
    text-align: center;
}

/* Footer title */
.footer-title {
    font-weight: 700;
    font-size: 18px;
}

/* Footer description */
.footer-description {
    font-size: 16px;
    font-weight: 600;
}