@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0%;
    margin: 0%;
    font-family: "Montserrat";
    line-height: 1.5rem;
}  

body{
    background-color:#cf953e;
    display: flex;
    flex-direction: column;
}

header{
    background-color: #023047;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #E0E1DD;
    box-shadow: 0px 13px 10px #f4c509;
}



.logo{
    width: 30px;
    margin: 10px;
}

.socialMedia, .legalStuff, .ourTeam{
    text-align: center;
    min-height: 170px;
    color: #023047;
}

footer{
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #023047; 
    display: flex;
    justify-content: center;
    color: #E0E1DD;
    box-shadow: 0px -10px 10px #f4c509;
}

.footerBox{
    width: 100%;
    background-color: #f0851a;
    margin: 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    box-shadow: 7px 7px 17px #f4c509 inset,
    -7px -7px 17px #f4c509 inset;
}

.link{
    display: flex; 
    align-items: center;
    color: #023047;
    text-decoration: none;
}


.logodragonBall{
    width: 60px;
    margin-right: 20px;
    border-radius: 2px;
}

.row2{
    width: 100%;
    display: flex;
    justify-content: center;
}
a{
    color: #E0E1DD;
    text-decoration: none;
}

.footerTitles{
    border-bottom: 1px solid #E0E1DD;
    margin-bottom: 20px;
}


main{
    background-color: orange;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.characterCard {
    background-color: #023047;
    color: white;
    border-radius: 5px;
    
}

.planetCard {
    background-color: #023047;
    color: white;
    border-radius: 5px;
}

.img {
    display: flex;
    object-fit: cover;
}

.navbar a{
    text-decoration: none;
    padding: 15px;
    display: block;
    transition: ease-in-out 0.2s;
    color: orange;
    margin: 0 auto;
}
.navbar a:hover{
    background-color: #023047;
    color: black;
}

.navbar{
    background-color:#053b56;
}