*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: CatComic, Arial, Helvetica, sans-serif;
}

:root{
    --test-color: #242424;
    --complementary-color: #ffffff;
    --time-transition: 0.3s;
    --border-radius-size: 1em;
    --glow-blur-size: 1.4em;
}

@font-face {
    font-family: Arista;
    src: url(../fonts/Arista_light.ttf), format("truetype");
}

@font-face {
    font-family: CatComic;
    src: url(fonts/Cat_Comic.ttf), format("truetype");
}

body{    
    background: url(images/mudisosa-background.webp) center no-repeat fixed;
    background-size: cover;
}

.container{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
}

.main-content{
    padding-top: 2.4em;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content > p{
    margin-top: 1em;
    text-shadow: 0em 0em 10px var(--complementary-color),
                0em 0em 20px var(--complementary-color),
                0em 0em 30px var(--complementary-color),
                0em 0em 40px var(--complementary-color),
                0em 0em 50px var(--complementary-color),
                0em 0em 60px var(--complementary-color),
                0em 0em 70px var(--complementary-color);
}

.name{
    width: 100%;
    text-align: center;
}

.name img{
    width: 70%;
}

.socialmedia-container{
    width: 100%;
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.socialmedia-container .item{
    width: 50%;
    height: 4em;
    text-decoration: none;
    color: black;
    background-color: var(--test-color);
    margin: 0.7em 0;
    border-radius: var(--border-radius-size);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow var(--time-transition), background-color var(--time-transition);
}

/* .item:hover{
    text-shadow: 0px 0px 3px var(--complementary-color);
} */

.item .socialmedia{
    width: 100%;
    height: 100%;
    border: var(--complementary-color) 0.2em solid;
    border-radius: var(--border-radius-size);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}


.item .socialmedia img{
    height: 80%;
    border-radius: 0.50em;
    margin-left: 0.3em;
}


.item .socialmedia p{
    display: inline-block;
    text-align: center;
    color: var(--complementary-color);
    font-size: 1.6em;
}

/* Redes sociales */
#deviantart{
    background-color: #12c55d ;
}

#deviantart:hover{
    background-color: 	#17ac5c;
    /* box-shadow: 0px 0px var(--glow-blur-size) #24ff89; */
}

#instagram{
    background-color: #c837abff;
}

#instagram:hover{
    background-color: #a700a7;
    /* box-shadow: 0px 0px var(--glow-blur-size)  #ff00ff; */
}

#pixiv{
    background-color: #0288d1;
}

#pixiv:hover{
    background-color: #008ab4;
    /* box-shadow: 0px 0px var(--glow-blur-size)  #00c3ff; */
}

#tiktok{
    background-color: #1b181b;
}

#tiktok:hover{
    background-color: #130513;
    /* box-shadow: 2px -5px var(--glow-blur-size) #ff0800, 5px 5px var(--glow-blur-size) #00c3ff; */
}

#youtube{
    background-color: #ed1c23;
}

#youtube:hover{
    background-color: #b90025;
    /* box-shadow: 0px 0px var(--glow-blur-size) #ff0033; */
}

#itch_io{
    background-color: #fa5c5c;
}

#itch_io:hover{
    background-color: #b93e3e;
    /* box-shadow: 0px 0px var(--glow-blur-size) #ff7676; */
}

.iframe-active{
    width: 100%;
    height: 55vh;
}


@media screen and (max-width: 912px) {
    .name img{
        width: 100%;
    }

    .iframe-active{
        width: 100%;
        height: 30vh;
    }
}

@media screen and (max-width: 430px) {
    .socialmedia-container .item{
        width: 100%;
    }

    .iframe-active{
        width: 100%;
        height: 30vh;
    }  
}


