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

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    background-color: #fff;
    /* Zurück auf die ursprüngliche Schriftart-Kombination */
    font-family: arial, "ｍｓ ｐゴシック", "ms pgothic", "돋움", dotum, helvetica, sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    animation: fadeInPage 0.8s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

.about-container {
    width: 100%;
    /* Der Kasten ist exakt 373px breit */
    max-width: 373px; 
    padding: 20px;
}

.content p {
    font-size: 29px;
    font-weight: bold; /* Arial braucht bold für den Look */
    line-height: 0.85;
    letter-spacing: -0.1em; /* Dein gewünschtes Spacing */
    color: black;
    margin-bottom: 30px;
}

.back-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    /* Margin-left auf 0, da die viewBox des SVG jetzt bündig ist */
    margin-left: -2px; 
    text-decoration: none;
}


.back-arrow svg {
    display: block;
}

@media screen and (max-width: 700px) {
    .content p {
        font-size: 24px;
    }

    .about-container {
        width: 100%;
        /* Der Kasten ist exakt 373px breit */
        min-width: 280px;
        padding: 20px;
    }

    
    
}

@media screen and (max-width: 1000px) {


    .about-container {
        width: 40%;
        /* Der Kasten ist exakt 373px breit */
        min-width: 315px;
    }

    
    
}