* {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: linear-gradient(0deg, rgba(17,17,17,1) 0%, rgba(51,51,51,1) 100%);
    width: 100%;
    height: 100%;
    margin: 0;

    background:
    conic-gradient(from 90deg at 1px 1px,#00000000 90deg,rgb(39, 39, 39) 0) 
    0 0/50px 50px;
    background-color: #1a1a1a;
}

#main {
    width: 100%;
    height: 100%;

    display: flex;
}

#About {
    flex: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    user-select: none;
    flex-wrap: wrap;
    min-height: 50%;
}

#description {
    font-size: 20px;
}

#Tools {
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    gap: 70px;
}

#Section {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#Section > span {
    position: absolute;
    font-size: 20px;
    transform: translateY(-30px);
}

#LinkButton {
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

#LinkButton-big {
    flex-direction: column;
    align-items: left;
    gap: 10px;
    width: 200px;
}

#LinkButton, #LinkButton-big {
    text-decoration: none;
    background-color: #212121;
    outline: #bdbdbd 1px solid;
    padding: 6px;
    border-radius: 6px;
    display: flex;

    gap: 5px;
    justify-content: center;

    position: relative;
    transition: all .3s;
    box-shadow: 3px 5px 5px black;
}


#LinkButton:hover, #LinkButton-big:hover {
    transform: translateY(-4px);
    outline: #ffffff 1px solid;
}

#LinkButton-big > img {
    width: 100%;
    border-radius: 6px;
}

@media (max-width: 841px) {
    #main {
        flex-direction: column;
    }

    #Tools {
        align-items: center;
        outline: white 1px solid;
    }
}