@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Montserrat:wght@500&family=Roboto+Mono:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    color: white;
}

body {
    background-color: black;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 50px 5%;
}

li, a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ecf0f1;
    text-decoration: none;
}

.logo {
    margin-right: auto;
}

.nav__links {
    list-style: none;
}

.nav__links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav__links li a, i {
    transition: all 0.3s ease;
}

.icons{
    font-size: 1.5rem;
}

.nav__links li a:hover, i:hover {
    color: #0088a9;
    transform: scale(2);
    font-size: 1.5rem;
}

header img {
    max-width: 5%;
}



#summary a{
    padding: 9px 20px;
    border: 2px solid white;
    background-color: white;
    color: black;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#summary a:hover{
    background-color: black;
    color: white;
}

#summary p{
    margin-bottom: 20px;
}



/* Responsive styles */
@media (max-width: 768px) {

}