@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    background-color: #1a1a1a;
    color: aliceblue;
}
header{
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    margin: 20px;
    padding: 15px;
    font-family: "Roboto", sans-serif;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-right: 50px;
}
div{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
}
header img{
    border-radius: 100px;
}
.b2{
    background-color: rgb(0, 0, 0);
    padding: 15px;
    color: aliceblue;
    text-decoration: none;
    text-align: center;
    font-family: "Roboto", sans-serif;
    border-radius: 50px;
    transition: 0.5s ease;
}
.b2:hover{
    background-color: rgb(255, 0, 0);
    transition: 0.5s ease;
}
main a{
    display: flex;
    justify-content: center;
    width: 10%;
    margin-left: 45%;
}
h1, h2{
    font-family: "Bebas Neue", sans-serif;
}
h3{
    font-family: "Roboto", sans-serif;
    text-align: center;
}
section{
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 25px;
    text-align: center;
}
main h2{
    text-align: center;
    flex-wrap: wrap;
    font-size: 60px;
}
span{
    color: red;
}
footer{
    background-color: black;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    margin-top: 100px;
}
section img{
    width: 500px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
article{
    background-color: black;
    border-radius: 15px;
}