* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

/*Navbar*/

#navbar {
    display: flex;
    background-color: rgb(0, 0, 0, 0.6);
    color: white;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
}

#navbar .navbar-container {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.logo {
    height: 40px;
    width: auto;
}

#navbar .navbar-container ul {
    list-style: none;
    display: flex;
    font-weight: bold;
}

#navbar .navbar-container ul li {
    padding: 0 20px;
}

#navbar .navbar-container ul li:nth-child(3) {
    border-right: 2px solid white;
}

#navbar .navbar-container ul li:hover {
    color: #1DB954;
    cursor: pointer;
}

#showcase {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    background: url('img/showcase.webp') center center/cover;
    background-color: rgb(0, 0, 0, 0.4);
    background-blend-mode: color;
    color: white;
}

#showcase .showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#showcase .showcase-container h2 {
    font-size: 5rem;
}

#showcase .showcase-container p {
    padding: 15px 0;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #1DB954;
    padding: 20px 40px;
    border: none;
    color: white;
    border-radius: 30px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 300ms ease;
}

.btn-primary:hover {
    background: #1ed760;
    cursor: pointer;
}

#footer {
    background-color: black;
    color: white;
    padding: 80px 0;
}

#footer .footer-content {
    display: flex;
    margin: auto;
    width: 60%;
    justify-content: space-between;
}

.footer-menu-item {
    padding: 22px 0;
}

.footer-menu {
    list-style: none;
    margin: 0 30px;
}

.footer-menu-item:hover {
    color: #1DB954;
    cursor: pointer;
}

.footer-menu p {
    font-weight: bold;
    text-transform: uppercase;
    color: #919496;
    font-size: 0.9rem;
}

.socials {
    display: flex;
}

.socials i:hover {
    color: #1DB954;
    cursor: pointer;
}

.socials i {
    padding: 0 20px;
    font-size: 1.7rem;
}


.fooster-info {
    margin: auto;
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-weight: bold;
    color: #919496;
    font-size: 0.75rem;
    padding-top: 50px;
}

.fooster-info-items {
    display: flex;
    list-style: none;
}

.fooster-info-item:hover {
    color: #1DB954;
    cursor: pointer;
}

.fooster-info-item {
    margin: 0 10px;

}


.country {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}

.country:hover {
    color: #1DB954;
    cursor: pointer;
}

.brazil-flag {
    height: 20px;
    width: auto;
    margin-left: 10px;
    display: inline-block;
}