body {
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgb(48, 0, 71));
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin: 10px 0;
    list-style-type: none;
}

ul li {
    margin: 0 15px;
}

a {
    color: white;
    text-decoration: none;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 50px;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-top: 10px; 
}

header h1 {
    color: rgb(153, 31, 209);
}

.container {
    padding: 0px 50px;
    width: 100%;
}

nav a:hover {
    color: rgb(153, 31, 209);
}

main {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box img {
    width: 200px;
    height: 200px; 
    border-radius: 50%;
    border: 5px solid rgb(153, 31, 209);
    margin-bottom: 10px;
}

.box span {
    font-size: 18px;
    color: white;
}

.icon {
    width: 20px !important;
    height: 20px !important;
    margin-top: 10px;
    border: none !important;
    border-radius: 0% !important;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        padding: 10px;
    }

    ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style-type: none;
        text-align: center;
    }

    .container {
        padding: 0 20px;
    }

    .box img {
        width: 150px;
        height: 150px;
    }

    .icon {
        width: 18px !important;
        height: 18px !important;
        border-radius: 0% !important;
    }
}

@media (max-width: 480px) {
    ul {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    header h1 {
        font-size: 24px;
    }

    .box img {
        width: 120px; 
        height: 120px; 
    }

    .icon {
        width: 16px !important;
        height: 16px !important;
        border-radius: 0% !important;
    }
}
