html, body {
    overflow-x: hidden;
    /* чтобы горизонтальная прокрутка не появлялась */
}

body {
    padding: 0;
    margin: 0;
    font-family: "Google Sans Code", monospace;
    background-color: #1a1208;   
    color: #fff2e6;              
}

main {
    display: flex;
    flex-direction: column;
    padding: 55px 40px;
}

a {
    text-decoration: none;
    color: #ff9f43;
    border-bottom: 2px solid #ff9f43;
    padding-bottom: 0.5px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px;
}

.header h2 {
    color: #ff9f43;
    margin: 0;
}

br {
    line-height: 2;
}

.content span {
    color: #ff9f43;
}

tt {
    background-color: #ff9f4333; 
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #ff9f434d;
    color: #ffd8b5;
}

h3 {
    margin-bottom: 3px;
}


#intro {
    position: fixed;
    inset: 0;
    background-color: #1a1208;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    -webkit-tap-highlight-color: transparent;
}

#intro-card {
    width: 512px;
    text-align: center;
    cursor: pointer;

    -webkit-user-select: none;
    user-select: none;
}

#intro-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

#intro-card span {
    display: inline-block;
    margin-top: 12px;
    color: #ff9f43;
    font-size: 20px;
    transition: transform 0.2s ease;
}

#intro-card:hover img,
#intro-card:hover span {
    transform: translateY(-8px);
}

#intro-card, #intro-card * {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

