@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

html {
    font-size: 62.5%;
}

.whoIsWatching {
    width: 100vw;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.main-div {
    width: 100vw;
    height: 80vh;
    /* background-color: rosybrown; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #000;
}

.main-div h1 {
    font-size: 6.5rem;
    letter-spacing: 0.2rem;
    font-size: 600;
}

.memberDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.memberDiv .btn,
.addIcon {
    height: 10vw;
    min-height: 8.4rem;
    max-height: 20rem;
    width: 10vw;
    min-width: 8.4px;
    max-width: 20rem;
    border-radius: 0.4rem;
    border: none;
    outline: none;
    margin-top: 4rem;
    margin-right: 3rem;
    margin-left: 3rem;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
}

.memberDiv .btn:nth-child(1) {
    /* background: linear-gradient(180deg, #c00d0e, #e4e4e4c7); */
    background-color: #424242;
}

.memberDiv .btn:nth-child(2) {
    /* background: linear-gradient(180deg, #566676, #e4e4e4c7); */
    background-color: #8f8c8c;
}

.memberDiv .btn:nth-child(3) {
    /* background: linear-gradient(180deg, #0770b1, #e4e4e4c7); */
    background-color: #c00d0e;
}

.memberDiv .btn span,
.addIcon span {
    width: inherit;
    /* background-color: red; */
    position: absolute;
    bottom: -3.5rem;
    left: 0;
    text-transform: capitalize;
    color: #000;
    font-size: 2rem;
    min-width: 150px;
    text-align: center;
    /* min-height: 200px; */
    font-weight: 600;
}

.memberDiv .btn {
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: 50%;
}

.icon {
    margin-top: 12px;
}

.client-icon,
.animator-icon,
.admin-icon {
    width: 100%;
    filter: invert(1);
}