* {
    font-family: sans-serif;
}

body {
    background-color: rgb(20, 20, 20);
    color: rgb(210, 210, 210);
}

header {
    display: flex;
}

header a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: rgb(62, 88, 255);
    margin: auto;
}

header a img {
    border-radius: 20px;
}

#user_account {
    display: flex;
    flex-direction: column;
    height: 40px;
    margin: auto;
    justify-content: center;
    padding: 10px;
}

#user_account a {
    color: white;
    align-items: center;
}

#user_account img {
    border-radius: 10px;
    height: 50px;
}

main section {
    width: 100%;
    max-width: 1000px;
    min-height: 200px;
    margin: auto;
    margin-top: 20px;
    padding: 10px 0;
    box-shadow: rgba(24, 55, 255, 0.337) 0px 0px 100px 0px;
    border-radius: 30px;
    text-align: center;
}

main section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

main section form textarea {
    transition: 0.3s;
    display: block;
    width: 85%;
    height: 150px;
    padding: 2.5%;
    resize: vertical;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid rgb(62, 88, 255);
    outline: none;
    color: white;
    font-size: 20px;
}

main section form textarea:focus {
    transition: 0.3s;
    border: 1px solid rgb(121, 139, 255);
}

main section form button {
    transition: 0.3s;
    display: block;
    width: 90%;
    height: 50px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    color: white;
    background-color: rgb(62, 88, 255);
    cursor: pointer;
}

main section form button:hover {
    transition: 0.3s;
    background-color: rgb(121, 139, 255);
    scale: 1.1;
}

#div_bottom {
    text-align: center;
    width: 100%;
}

#shop_a {
    display: block;
    margin: auto;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
    font-size: 25px;
    width: calc(100%-20px);
    max-width: 500px;
    color: white;
    text-decoration: none;
}

footer {
    text-align: center;
}

#authors {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

#authors > div > img {
    width: 100px;
    border-radius: 20px;
}

#authors > div {
    padding: 10px 10px;
    transition: 0.3s;
}

#authors > div:hover {
    transition: 0.3s;
    scale: 1.2;
}

#author_faktor {
    box-shadow: black -20px 0 50px 2px;
    border-radius: 20px;
}

#author_softy {
    box-shadow: rgba(61, 3, 219, 0.5) 20px 0 50px 2px;
    border-radius: 20px;
}

#author_fn_codes_drops {
    box-shadow: rgba(61, 3, 219, 0.5) 0 0 50px 2px;
    border-radius: 20px;
}

#socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#socials a img {
    width: 30px;
    border-radius: 10px;
    padding: 5px;
    background-color: white;
}

#socials a {
    display: flex;
    text-decoration: none;
    border-radius: 10px;
    color: white;
    box-shadow: rgba(255, 255, 255, 0.274) 0 0 50px;
    gap: 20px;
    padding: 0 10px;
    transition: 0.3s;
}

#socials a strong {
    margin: auto;
}

#socials a:hover {
    transition: 0.3s;
    background-color: rgb(62, 88, 255);
}
