* {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body, html {
    height: 100%;
}

body {
    background-image: url("media/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;

    padding: 50px 0;
    box-sizing: border-box;
}

main {
    /*position: relative;*/
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0 0 10px 0 #000000;
    box-shadow: 0 0 10px 0 #000000;
    padding: 10px 10px;
}

/*.logo {
    max-width: 200px;
    width: 60%;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, 0);
}

.title {
    margin-top: 50px;
}*/

.title,
.subtitle {
    margin-bottom: 10px;
}

.title,
.subtitle,
.description {
    text-align: center;
}

.description {
    margin-bottom: 5px;
}

.links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;

}

.link {
    padding: 5px;
    border-radius: 10px;
    flex: 1 1 0;

    text-decoration: none;
    color: black;
    -webkit-box-shadow: 0 0 5px 0 #000000;
    box-shadow: 0 0 5px 0 #000000;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    display: flex;
    align-items: center;
    gap: 5px;
}

.link:hover .link-title,
.link:hover .link-info {
    color: white;
}

.link:hover {
    -webkit-box-shadow: 0 0 8px 0 #000000;
    box-shadow: 0 0 8px 0 #000000;
}

.link-title,
.link-info {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-icon {
    width: 50px;
}

.link-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.link.discord {
    background-color: #7289da;
}

.link.store {
    background-color: #00c3ff;
}

.link.name-mc {
    background-color: #3ac608;
}

@media only screen and (min-width: 700px) {
    .container {
        padding: 150px 0 50px 0;
        width: 70%;
    }
    .links {
        flex-direction: row;
    }
    .link {
        overflow: hidden;
    }
}