body {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(0, 87, 255, 1) 0%, rgba(0, 240, 255, 1) 100%);
    font-family: "Signika Negative", sans-serif;
    overflow: hidden;
}

#root {
    /* background-color: rgb(255, 255, 255); */
    display: flex;
    flex-direction: row;
    align-items: center;
}

.root-spacers {
    width: 2rem;
    max-width: 2rem;
    min-width: 2rem;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#musicheads-husky {
    width: 10rem;
    height: 10rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    filter: drop-shadow(0 0.5rem 0.5rem rgba(0, 0, 0, 0.5));
}

#title {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.75));
}

#description {
    color: rgb(250, 250, 250);
    font-size: 2rem;
    padding-bottom: 1rem;
    font-weight: 550;
    filter: drop-shadow(0 0.1rem 0.1rem rgba(0, 0, 0, 0.50));
}

.links-container {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 2rem;
    height: 100vh;
    overflow: hidden -moz-hidden-unscrollable;
    max-width: fit-content;
    width: 80vw;
}

.big-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: #4c62ff;
    color: white;
    width: 80vw;
    max-width: 30rem;

    text-align: center;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 400;

    margin: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background-color 0.3s;
    filter: drop-shadow(0 0.25rem 0.5rem rgba(0, 0, 0, 0.25));
}

.big-link:hover {
    background-color: #373fbe;
    /* Change to desired hover color */
}

.link-text {
    margin-right: auto;
    margin-left: -2rem;
    filter: drop-shadow(0 0.1rem 0.1rem rgba(0, 0, 0, 0.50));
}

.icon {
    margin-right: auto;

    left: 0px;
    padding: 0.4rem;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    max-width: 2rem;
    max-height: 2rem;
}


@media (max-height: 680px) {
    .big-link {
        max-height: 1.5rem;
    }
}

@media (max-width: 634px) {
    #title {
        font-size: 3.5rem;
    }

    #description {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #title {
        font-size: 3rem;
    }

    #description {
        font-size: 1.1rem;
    }
}

@media (max-width: 440px) {
    .link-text {
        font-size: 1.7rem;
    }
}

@media (max-width: 365px) {
    #title {
        font-size: 2.9rem;
    }

    #description {
        font-size: 1rem;
    }

    .link-text {
        font-size: 1.7rem;
    }
}
