* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.full-screen {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.dashboard {
    width: 800px;
    height: 400px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(0.5rem);
    border: 1px solid rgba(255,255,255,1);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-section {
    width: 750px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/Unmazify300.png) no-repeat center center;
    background-size: 250px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.text-section {
    width: 750px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-section p {
    font-size: 0.7rem;
    font-weight: 400;
    color: #FFFFFF;
}

/* Mobile responsive */
@media (max-width: 768px) {
html,
body {
width: 100%;
min-height: 100%;
overflow-x: hidden;
}


.full-screen {
    position: relative;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 20px;
    overflow: hidden;
}

.dashboard {
    width: 92vw;
    max-width: 420px;
    height: 78vh;
    max-height: 620px;
    min-height: 420px;
}

.logo-section {
    width: 100%;
    height: 70%;
    background-size: 200px;
}

.text-section {
    width: 100%;
    height: 30%;
    padding: 12px 18px;
    flex-wrap: wrap;
    text-align: center;
}

.text-section p {
    width: 100%;
    font-size: 0.62rem;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}


}

/* Small phones */
@media (max-width: 420px) {
.dashboard {
width: 92vw;
height: 76vh;
min-height: 390px;
}


.logo-section {
    height: 68%;
    background-size: 170px;
}

.text-section {
    height: 32%;
    padding: 12px 14px;
}

.text-section p {
    font-size: 0.56rem;
    line-height: 1.45;
}


}

/* Very small phones */
@media (max-width: 340px) {
.dashboard {
width: 94vw;
height: 76vh;
min-height: 360px;
}


.logo-section {
    height: 66%;
    background-size: 145px;
}

.text-section {
    height: 34%;
    padding: 10px 12px;
}

.text-section p {
    font-size: 0.52rem;
    line-height: 1.4;
}


}

@media (max-height: 650px) and (max-width: 768px) {
.dashboard {
height: calc(100dvh - 40px);
min-height: 0;
}


.logo-section {
    height: 64%;
    background-size: 150px;
}

.text-section {
    height: 36%;
}

.text-section p {
    font-size: 0.52rem;
    line-height: 1.35;
}


}
