@font-face {
    font-family: 'Fontb';
    src: url('../fonts/soehne-web-halbfett.f7dddd91.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Fonts';
    src: url('../fonts/soehne-web-leicht.942ceda1.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Fontc';
    src: url('../fonts/soehne-schmal-web-fett-kursiv.c0115879.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Fontw';
    src: url('../fonts/rebucked.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Fonts';
    background-color: #000000;
    color: #ffffff;
}

nav {
    font-family: 'Fontc';
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
   
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0px 3vw;
}

nav .name {
    font-size: 3vw;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.2s ease; /* Smooth transition */
}

nav .about {
    font-size: 2vw;
    font-weight: 400;
    margin-left: auto;
    transition: transform 0.3s ease, color 0.2s ease; /* Smooth transition */
}

nav .contact {
    font-size: 2vw;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.2s ease; /* Smooth transition */
}

nav .Blog {
    font-size: 2vw;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.2s ease; /* Smooth transition */
}

nav .Work {
    font-size: 2vw;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.2s ease; /* Smooth transition */
}

nav .Work:hover,
nav .Blog:hover,
nav .about:hover,
nav .contact:hover {
    color: #8fffe1;
    transform: translateY(-0.2vw);

}

nav .name:hover {
    color: #8fffe1;
    transform: translateY(-0.2vw);
}

.block .container {
    width: 100%;
    font-family: 'Fontb';
    max-width: 50vw;
    margin: 0vw auto;
    padding: 2vw;
    border-radius: 2vw;
}

.container h2 {
    text-align: center;
    color: #ffffff;
    font-size: 3vw;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5vw;
    color: #ffffff;
    font-size: 1vw;
}

input,
textarea {
    margin-bottom: 1vw;
    padding: 1vw;
    border-radius: 0.5vw;
}

input[type="submit"] {
    background-color: #00ffbb;
    color: #000000;
    border: none;
    cursor: pointer;
    padding: 1vw;
}

input[type="submit"]:hover {
    background-color: #87ffdf;
}

.Platforms {
    text-align: center;
}

.Platforms h2 {
    color: #ffffff;
    font-family: 'Fontb';
    font-size: 4vw;
    margin-top: 0;
}

.Platforms .social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.Social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 2vw;
    text-align: center;
    border: 0.2vw solid #00ffbb;
    border-radius: 1vw;
    padding: 1vw;
    width: 12vw;
    height: 12vw;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.Social:hover {
    transform: translateY(-0.5vw);
}

.Social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Fontc';
    color: #ffffff;
    font-size: 2vw;
    font-weight: 400;
    transition: color 0.3s ease;
}

.Social a:hover {
    color: #8fffe1;
}

.social-icon {
    width: 5vw;
    height: 5vw;
    margin-bottom: 1vw;
}
