body {
    margin: 0;
    min-height: 100vh;
}

.title{
    font-family: serif;
    font-size: 50px;
    color: rgb(255, 0, 255);
}

.linktree{
    border-radius: 10px;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.349);
    text-align: center;
    background-image: url("assets/wallpaper.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem;
    min-height: 100vh;
    box-sizing: border-box;
   
    >.link-wrapper a {
        display: flex;
        width: 50%;
        padding: 12px 16px;
        border-radius: 10px;
        box-shadow: 2px 2px rgba(0, 0, 0, 0.349);
        color: black;
        box-sizing: border-box;
        text-align: center;
        text-decoration: none;
        font-size: 50px;
        background-color: #ffffffa4;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        transition: 100ms ease-in-out;
        &:hover{
            transform: scale(1.05);
            background-color: #ffffff;
        }
    }
    
    p{
        font-size: 30px;
        font-weight: bold;
        color: whitesmoke
    }

    .link-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
}

a{
    align-items: center;
    justify-content: center;
    gap: 15px;

}

a img {
    width: 40px;
    height: 40px;
}

.linktree > .link-wrapper a.instagram {
    background-color: rgba(226, 0, 226, 0.65);
    &:hover{
        background-color: rgb(226, 0, 226);
    }
}

.linktree > .link-wrapper a.github {
    background-color: rgba(0, 0, 0, 0.295);
    color: white;

    .icon-hover {
        display: none;
    }

    &:hover{
        background-color: rgb(255, 255, 255);
        color: black;

        .icon-normal {
            display: none;
        }

        .icon-hover {
            display: inline;
        }

    }
}

.linktree > .link-wrapper a.discord{
    background-color: rgba(88, 101, 242, 0.65);

    &:hover{
        background-color: #0519f5d8;
    }
}

.linktree > .link-wrapper a.steam{
    background-color: rgba(9, 26, 70, 0.65);
    color: white;

    &:hover{
        background-color: #0048ff;
    }
}

.linktree > .link-wrapper a.sito{
    background-color: rgba(124, 58, 237, 0.65);

    &:hover{
        background-color: #a855f7;
    }
}

@media (max-width: 600px) {

    .linktree {
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
        padding: 2rem 1rem;
    }

    .linktree > .link-wrapper a {
        font-size: 26px;
        width: 100%;
    }

    .linktree > .link-wrapper a img {
        width: 22px;
        height: 22px;
    }
}