@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');
* {
    margin: 0px;
    padding: 0px;
}
body {
    margin-left: 15px;
    background: #0a0a0a;
    background-size: 40px 40px;
    background-image: 
     linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
     linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}
        /* Fonts */
.Font-1 {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}
.Font-2 {
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.Font-3 {
    font-family: 'Architects Daughter', cursive;
    color: #D3D3D3;
    font-size: 20px;
}
h2 {
    font-size: 30px;
    font-weight: 700;
    margin-left: -10px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);

    position: relative;
    display: inline-block;
}
h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: currentColor;
    opacity: 0.7;

    border-radius: 100% 15% 100% 15%;
    transform: rotate(-1deg);
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 25px;
}
.B {
    font-size: 50px;
}
.date {
    color: #D3D3D3;
    font-family: 'Inter', sans-serif;
}
        /* Container*/
.container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 30px;
    transition: all 300ms ease;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.container.logo {
    width: 50px;
    aspect-ratio: 1/1;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}
.container.logo svg {
   width: 60%;
   height: 60%;
}
.logo-zeile {
    display: flex;
    align-items: center;
    gap: 30px;
}
.container.text {
    width: 100%;
    gap: 30px;
    max-width: none;
}
.container.card {
    gap: 5px;
}
.container.card.L:hover {
    transform: translateX(10px);
}
.container.card.R:hover {
    transform: translateX(-10px);
}
.container.hobbies {
    gap: 10px;
    display: flex;
}
.container:hover {
    box-shadow: 0 0 30px rgba(80, 162, 255, 0.2);
    border: 1px solid rgb(80, 162, 255, 0.3);
    transition: 0.3s ease-in-out;
}
.container.logo:hover {
    box-shadow:none
}
        /* Group*/
.group {
    max-width: 950px;
    margin: 82px auto;
    padding: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cards {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 30px;
    max-width: 950px;
    margin: 0;
}
.left-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hobbies {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 950px;
    margin: 0;
}
.divider2 {
    width: 2px;
    height: 70%;
    background-color: rgba(255, 255, 255,0.10);
    margin-top: 100px;
}