* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    background: #f3f4f5;
}
.content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    gap: 22px;
    cursor: default;
    min-height: 100vh;
}
.content_title {
    margin-top: 120px;
    width: auto;
}
.content_title h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #000;
    margin-top: 8px;
}
.wrapper {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: 50px;
    color: black;
    padding: 30px 40px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), 0 8px 25px rgba(0,0,0,0.3);
}
.wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 30%, transparent 60%);
    pointer-events: none;
}