*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
}
nav{
    background-color: rgb(128, 128, 128);
    display: flex;
    justify-content: space-between;
    padding: 1rem 4rem;
}
nav div img{
    width: 80px;
    display: block;
    transition: transform 0.2s ease;
}
nav div img:hover{
    transform: scale(1.2);

}
nav ul{
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}
nav ul li a{
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    font-weight: 700;
    padding: 1rem 4rem;
}
nav ul li a:hover{
    border-bottom: 2px solid rgb(255, 255, 255);
    border-radius: 2rem;
}
nav ul li a.active {
    border: 2px solid rgb(255, 255, 255);
    background-color: rgba(255, 0, 0, 0.4);
    border-radius: 2rem;
}
section{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
    color: white;
}
.border {
    border: 4px solid #6200ff;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    background-color: black;
}

.box{
    max-width: 500px;
    margin-right: 50px;
    padding-right: 2px;
    border-right: 2px solid white;
}
.box2{
    max-width: 500px;
}
.box2 ul {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
    padding-left: 0;
    gap: 50px;
}
.box2 ul li {
    list-style: none;
}
.box2 ul li a {
    font-size: 3em;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}
.box2 ul li a:hover {
    transform: scale(1.2);
    color: #ff4081;
}
h1{
    font-size: 5em;
}
h2{
    font-size: 1.2em;
}
