@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@font-face {
  font-family: 'RiftSoft';
  src: url('./assets/Police-RiftSoft/RiftSoft-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
}

#mainContainer {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
}

#leftContainer {
    flex: 1;
    background-color: transparent;
}

#centerContainer {
    flex: 1;
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 10px;
}

#rightContainer {
    flex: 1;
    background-color: transparent;
    padding: 10px 0px 10px 0px;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

#logoCenter {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#logoCenter img {
    width: 180px;
    height: auto;
}

#mainCenter {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
}

#AIeye {
    width: 325px;
    /* 375px */
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    cursor: pointer;
    z-index: 3;
    position: relative;
}

#displayTabContainer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transform: translateY(-10px);
    z-index: 2;
    background-color: white;
    height: auto;
    width: 240px;
}

#tabContainer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-left: 30px; */
    margin-right: 15px;
    transform: translateY(-10px);
    z-index: 1;
    opacity: 0;
    transition: transform 1.4s ease-out, opacity 0.2s ease-out;
}

#tabContainer img {
    height: auto;
    width: 240px;
    cursor: default;
}

#tabTextContainer {
    position: absolute;
    z-index: 2;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    padding-left: 35px;
    /* padding-top: 25px; */
    /* padding-bottom: 50px; */
    padding-right: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: transparent;
}

#listCategories li {
    color: white;
    font-size: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}

#tabContainer li a {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    /* text-transform: uppercase; */
}

#tabContainer li a:hover {
    color: black;
}

#startContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#startText {
    text-transform: uppercase;
    font-size: 24px;
    margin: 0;
    opacity: 1;
    transition: opacity 0.2s ease-out;
    text-align: center;
    width: 80%;
}

#textContainer {
    position: relative;
    top: -1000px;
    transition: top 3s ease-out;
    display: flex;
    height: auto;
    width: 300px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: white;
}

#textContainer p {
    font-family: 'RiftSoft', sans-serif;
    font-size: 19px;
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

#rightSquare {
    width: 20px;
    height: 100px;
    background-color: white;
    border-radius: 0 10px 10px 0;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid transparent;
}

#leftSquare {
    width: 20px;
    height: 100px;
    background-color: white;
    border-radius: 10px 0 0 10px;
    border-top: 1px solid black;
    border-right: 1px solid transparent;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
}

#centerSquare {
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#centerLine {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 1px;
    background-color: black;
    z-index: -5;
}

@media screen and (max-width: 1024px) {
    #rightContainer {
        display: none;
    }

    #leftContainer {
        display: none;
    }
    #centerLine {
        display: none;
    }
}