*{
    box-sizing: border-box;
    margin:0;
    transition: 0.1s;
}
body {
    font-family: "Space Grotesk", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1e1e1e;
    padding:20px;
    padding-top:100px;
    padding-bottom:0;
}
.container {
    max-width: 800px;
    text-align: center;
}
.container h1{
    font-family: 'Space Grotesk';
    font-weight: 400;
    color: #be93ff;
    font-size: 80px;
    letter-spacing: -3px;
}
textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1em;
    outline: transparent;
    background-color: #323232;
    border: 1px dashed rgb(190 147 255);
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
}
input, button, select {
    padding: 10px;
    margin: 5px;
    font-size: 1em;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    outline: transparent;
    background-color: #323232;
    border: 1px dashed rgb(190 147 255);
    border-radius: 5px;
    color: white;
}

input{
    cursor:text;
}

button
{
    background-color: #be93ff;
    border: 0;
    color: black;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}

button:active
{
    transform: scale(0.95);
    opacity: 0.8;
}


.footerbox
{
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* padding-top: 50px; */
    /* padding-bottom: 50px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #262626;
    border-radius: 15px 15px 0px 0px;
    margin-top: 100px;
}

.footer
{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap:30px;
    text-align: left;
}

.footerelement img
{
    width:150px;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
    margin-bottom: 10px;
}

.footerelement p
{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: grey;
    margin-top: 5px;
}

.footerelement h2
{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #dadada;
    margin-bottom: 10px;
}

.footerelement a
{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: grey;
    text-decoration: none;
    display: flex;
    margin-bottom: 10px;
}

.footerelement a:hover
{
    text-decoration: underline;
}

.footerelementlogo h2
{
    font-family: 'Zilla Slab', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #f2f2f2;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.footerelementlogo h2 img
{
    width: 20px;
    user-select: none;
    pointer-events: none;
    margin:0;
    margin-right: 5px;
}

@media screen and (max-width: 600px) {
    body{
        padding-top: 25px;
    }
    .container
    {
        width: 100%;
    }
    .footer
    {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footerelementlogo h2
    {
        justify-content: center;
    }
    .footerelement a
    {
        justify-content: center;
    }
}