* {
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4; 
}

#likert {
    display: none;
}

h1 {
    color: #002657;
    line-height: 1;
}

.title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 25px;
    text-align: left;
}

.header img {
    height: 65px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 3px solid #002657;
}

.logo {
    height: 50px;
}

.video-container {
    margin: 45px auto;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-container video {
    border-radius: 15px;
    -webkit-box-shadow: 0px 17px 50px -25px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 17px 50px -25px rgba(0,0,0,0.55);
    box-shadow: 0px 17px 50px -25px rgba(0,0,0,0.55);
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    color: white;
    padding: 15px 20px;
    margin: 11px;
    font-size: 17px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: .2s ease-in-out
}

.orange {
    background-color: #fa4616;
}

.blue {
    background-color: #002657;
}

.green {
    background-color: #22884c;
}

#back {
    display: none;
}

.button:hover {
    transform: scale(1.1);
    animation: pulse-animation 2s infinite;
}

.select-alex-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 65%;
}

.select-alex-area img {
    border-radius: 50%;
    height: 305px;
    transition: .2s ease-in-out;
    padding: 15px !important;
}

.select-alex-area img:hover {
    transform: scale(1.1);
    animation: pulse-animation 2s infinite;
    cursor: pointer;
}

.bottom-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 15px;
}

#select {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#interaction {
    height: 100%;
    flex-direction: column;
    display: none;
}

#change-alex {
    color:#002657;
    transition: .2s ease-in-out;
}

#change-alex:hover {
    text-decoration: underline;
    cursor: pointer;
    color:#fa4616;
}

#countdown-loader {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Optional: allows clicks to pass through */
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.loader {
    width: 60px;
    aspect-ratio: 1;
    border: 15px solid #ddd;
    border-radius: 50%;
    position: relative;
    transform: rotate(45deg);
  }

  .loader::before {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 15px solid #fa4616;
    animation: l18 5s linear forwards;
  }

  @keyframes l18 {
      0%   {clip-path:polygon(50% 50%,0 0,0    0,0    0   ,0    0   ,0    0   )}
      25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0   ,100% 0   ,100% 0   )}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
      75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    100%)}
      100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0    100%,0    0   )}
  }

  .loader p {
    transform: rotate(-45deg);
    color: white;
  }

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@media only screen and (max-width: 600px) {
    .header .title {
        font-size: 21px;
    }

    .header img {
        height: 45px;
    }

    .video-container {
        width: 95%;
        margin: 25px auto;
    }

    .button {
        font-size: 15px;
        padding: 9px 15px;
        margin: 5px;
    }

    .button:hover {
        transform: none;
        animation: none;
    }

    .heading-area {
        margin: 0px 35px;;
    }

    .select-alex-area img {
        height: 205px;
    }

    .bottom-nav {
        flex-direction: column;
    }
}