body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    background-color: black;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

#background {
    position: fixed;
    height: 100%;
    width: 100%;
    background-image: url("./resources/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(50px);
}

#backgroundFilter {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
}

#content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: flexbox;
    justify-content: center;
    text-align: center;
}

#profil_picture {
    margin-top: 60px;
    height: 100px;
}

h1 {
    font-size: 20px;
    font-weight: 700;
}

h2 {
    color: rgb(255, 255, 255, 0.5);
    font-size: 14px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.big_link {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}

.big_link a {
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    height: 50px;
    width: 100%;
    transition: scale 0.2s;
    color: white;
    text-decoration: none;
}
.big_link a:hover {
    scale: 1.02;
    cursor: pointer;
}

.little_links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}
.little_links a {
    margin-left: 5px;
    margin-right: 5px;
    height: 35px;
    width: 35px;
    transition: scale 0.1s;
}
.little_links a:hover {
    scale: 1.08;
    cursor: pointer;
}
.little_links a svg {
    width: 100%;
    height: 100%;
}
.little_links a svg path {
    fill: rgb(255, 255, 255, 0.9);
}

.logo {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.logo img, .logo svg {
    max-width: 44px;
    max-height: 44px;
}
.logo svg path {
    fill: white;
}

.big_link a p {
    float: none;
    left: 50%;
    margin-left: 50px;
    margin-right: 50px;
}

h3 {
    margin-top: 50px;
    font-weight: 400;
    font-size: medium;
    padding-bottom: 20px;
}