@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    background: rgb(232,236,239);
    font-family: "Poppins", sans-serif;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;

    color: #434343;
}
 
/*cards*/

.cards { 
    display: flex;
    
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 35px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 17px 7px rgba(0,0,0,0.43);
    -moz-box-shadow: 3px 3px 17px 7px rgba(0,0,0,0.43);
    box-shadow: 3px 3px 17px 7px rgba(0,0,0,0.43);
}

.card:hover {
    transform: scale(1.05);
    transition: 0.5s;
}


.icon {
    width: 150px;
    height: 150px;
}
.icon:hover {
    transform: scale(1.15);
    transition: 0.5s;
}

img {
    width: 100%;
    height: 100%;
}

.icones {
    height: 35px;
    width: 35px;
}


h3 {
    margin-bottom: 0px;
}

span {
    margin-bottom: 10px;
}

.box a  {
    width: 45px;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 5px;
    margin: 0.6rem;
    position: relative;
    
    cursor: pointer;
    transition: all 0.5s ease;
    color: white;
    text-decoration: none;
}

.box a:hover {
    width: 115px;
    border-radius: 20px;
}

.spotify:hover {
    width: 110px;
    background-color: #1ed760;
    color: black;
    border-radius: 20px;
}
.youtube:hover {
    width: 110px;
    background-color: #f9051b;
    color: white;
    border-radius: 20px;
}


.icon-s {
 
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    margin-left: 5px;
    transition: all .4s ease;
}

selection:nth-child(3), selection:nth-child(4){
    width: 200px;
    
}

/*HEADER*/
header ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;

}

li {
    padding-right: 50px;
    font-size: 17px;
}
li:hover {
    transform: scale(1.2);
    transition: 0.5s all;
}

header a {
    text-decoration: none;
    color: black;

}


.iconess {
    width: 17px;
    height: 17px;
    padding-top: 1px;
}

a li span {
    text-decoration: underline;
}

header {
    height: 80px;
}

/*titulo*/

h1 {
    height: 20px;
    padding-bottom: 45px;
}

