@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: "Inconsolata", serif;
    font-size: 24pt;
}

.bg {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    background-image: url('assets/img/bg.webp');
    background-size: cover;
    z-index: -1;
    opacity: .08;
}

#content {
    text-align: center;

    h1 {
        font-family: "Inconsolata", serif;
        font-weight: 400;
        font-size: 24pt;
        color: #d08fa3;
        padding-left: 50px;
        padding-right: 50px;
        margin-bottom: 50px;
    }

    .logo-content {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
        flex-direction: row;
        margin-top: 30px;

        .logo {
            width: 100%;
            height: auto;
            padding-left: 10px;
            padding-right: 10px;
            max-width: 350px;
            margin-bottom: 10px;

            img {
                max-width: 350px;
            }
        }
    }

    .link-tree-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;

        .link-tree {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: stretch;
            align-content: space-around;
            width: 100%;
            max-width: 500px;

            li {
                padding-bottom: 30px;
                padding-left: 20px;
                padding-right: 20px;

                a, a:link, a:visited, a:active, a:focus {
                    display: inline-block;
                    font-family: "Inconsolata", serif;
                    font-size: 32px;
                    text-decoration: none;
                    font-weight: bold;
                    color: white;
                    background-color: #a46a79;
                    padding: 20px 20px;
                    border: none;
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    outline: none;
                    border-radius: 32px;
                }

                @media (hover: hover) {
                    a:active, a:hover {
                        color: white;
                        background-color: #375676;
                        transition: color 0.3s ease, background-color 0.3s ease;
                    }
                }

                @media (hover: none) {
                    a:hover {}

                    a:active {
                        color: white;
                        background-color: #375676;
                        transition: color 0.3s ease, background-color 0.3s ease;
                    }
                }
            }
        }
    }
}
