body {
    background-image: url("/Assets/Photos/bg3.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
}
.navbar {
    background-color: #000000;
    box-shadow: 0 0 1px 0px , 0 0 20px 5px rgb(255, 255, 255);
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    margin-top: 50px;
    width: 90%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    position: absolute;
}
.navbar ul {
    list-style-type: none;
    position: relative;
    display: flex;
    text-decoration: none;
    gap: 20px;
    line-height: normal;
}
.navbar ul li a {
    color: rgb(231, 230, 230);
    text-decoration: none;
    outline: 2px solid rgb(80, 80, 80);
    outline-offset: 3px;
    border-radius: 5px;
    align-items: center;
}
.navbar ul li a:hover {
    color: #ff0000;
}
.maintext{
    font-family: "Roboto", sans-serif;
    font-weight: 200px;
    color: white;
    padding: 12px;
    width: 150px;
    height: 10;
    position: relative;
    font-size: 20px;
    top: 100px;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.site-footer {
    border-top: 4px solid #590909;
    text-align: center;
    margin-top: 390px;
}
.site-footer a {
    color: white;
    font-weight: 200px;
}
.site-footer p {
    font-size: 15px;
    color: gray;
}
.site-footer a:hover {
    color: red;
}

@media screen and (max-width: 1500px) {
    .site-footer {
        border-top: 4px solid #590909;
        text-align: center;
        margin-top: 390px;
    }
    .site-footer a {
        color: white;
        font-weight: 200px;
    }
    .site-footer p {
        font-size: 15px;
        color: gray;
    }
    .site-footer a:hover {
        color: red;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 30px;
    row-gap: 20px;
    margin-left: 10%;
    margin-top: 20px;
}
.column {
    flex: 10px;
    gap: 2px;
    max-width: 12%;
    padding: auto 10px;
    margin-left: 4.8%;
}
.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    margin-left: -3px;
    border-radius: 50%;
    border: 3px solid #ffffff;
}

@media screen and (max-width: 800px) {
    .column {
        flex: 100%;
        margin-right: 45px;
        margin-left: 0px;
        max-width: 100%;
   }
}
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        margin-right: 45px;
        margin-left: 0px;
        max-width: 100%;
   }
}

.team-person{
    box-shadow: 0 0 1px 0px , 0 0 10px 1px rgb(0, 0, 0);
    display: block;
    background: rgba(0, 0, 0, 0.8);
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    color: white;
    border-radius: 20px;
    border: 3px solid #590909;
    padding: 12px;
    width: 150px;
    height: 270px;
    position: relative;
    font-size: 23px;
    top: 200px;
    left: -20%;
    transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 1200px) {
    .team-person{
        box-shadow: 0 0 1px 0px , 0 0 10px 1px rgb(0, 0, 0);
        display: block;
        background: rgba(0, 0, 0, 0.8);
        font-family: "Roboto", sans-serif;
        font-weight: 200;
        color: white;
        border-radius: 20px;
        border: 3px solid #590909;
        padding: 12px;
        width: 150px;
        height: 270px;
        position: relative;
        font-size: 23px;
        top: 200px;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
    }
}