body{
    height: 100vh;
    width: 100vw;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    background-color: #eaeaea;
    overflow-x: hidden;
}

main{
    display: grid;
    height: 100%;
    place-items: center;
}

ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-block: 2rem;
    margin-block: 0;
    gap: 1.2rem;

}

nav{
    background-color: rgb(79, 81, 95);
}
a.nav-link{
    text-decoration: none;
    font-size: clamp(1rem, 1vw, 1.6rem);
    font-weight: 600;
    text-transform: uppercase;
}
a:visited{
    color: #7fe1ff;
}
a{
    text-decoration: none;
}

.card{
    padding: 1.5rem 1rem;
    max-width: 20rem;
    border-radius: .3rem;
    box-shadow:  9px 10px 5px #000000;
    background-color: rgb(79, 81, 95);
}
.card-img{
    max-width: 100%;
    border-radius: 50%;
}
.card-title{
    color: white;
}
.card-body p{
    color: white;
}

footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    width: inherit;
    padding-block: .7rem;
    bottom: 0;
    background-color: rgb(79, 81, 95);
}

svg{
    max-width: 1rem;
}

iframe{
    width: 100%;
    height: 100%;
}
.hidden{
    display: none;
}