@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
html,
body {
    margin: 0px;
    height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}
a {
    text-decoration: none;
}

.back-arrow-icon {
    position: absolute;
    width: clamp(16px, 4.5vw, 20px);
    height: clamp(24px, 6.5vw, 28px);
    top: clamp(16px, 4vw, 20px);
    left: 16px;
}

.main-menu-text {
    position: absolute;
    top: clamp(5px, 2vw, 10px);
    left: 48px;
    font-family: "Poppins-Medium", Helvetica;
    font-weight: 500;
    color: #b2b2b2;
    font-size: clamp(16px, 4.5vw, 18px);
    line-height: 42px;
    white-space: nowrap;
}

.page-title {
    position: absolute;
    top: clamp(50px, 12vw, 70px);
    left: 39px;
    font-family: "Poppins-Medium", Helvetica;
    font-weight: 500;
    color: #121843;
    font-size: clamp(24px, 6vw, 28px);
    line-height: 42px;
    white-space: nowrap;
}

.logo {
    position: absolute;
    width: clamp(150px, 40vw, 180px);
    height: clamp(36px, 10vw, 45px);
    top: clamp(12px, 4vw, 18px);
    right: clamp(10px, 3vw, 16px);
}

.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffbd59;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.2s;
}