body {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    font-family: 'Mitr', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1 {
    margin-bottom: 0px;
}
h5 {
    margin-top: 0px;
}
p {
    font-size: 1rem;
}
.titleFont{
    font-family: 'Bangers', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.maxed {
    margin: 0px;
}
.fullWidth {
    width: 100%;
    margin-bottom: 2.5vh;
}
.custom-container {
    position: fixed;
    width: 100%;
    z-index: 1;
    text-align: center;
    color: #f3f3f3;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: all;
}
.alignbox {
    align-items: center;
}
.popupbox {
    background-color: rgb(8, 47, 83);
    box-shadow: -6px 6px #f3f3f3;
    border: 4px solid #f3f3f3;
    color: #f3f3f3;
    height: auto;
    padding: 0.75vw;
    z-index: 200;
    min-width: 300px;
    max-height: 70vh;
    overflow-y: auto;
}
.exit {
    width: 25px;
    height: 25px;
    border: 2px solid #f3f3f3;
    box-shadow: -3px 3px #f3f3f3;
    cursor: pointer;
}
.actionBtn {
    background-color: #f067b7;
    border: 2px solid #f3f3f3;
    box-shadow: -3px 3px #f3f3f3;
    color: #f3f3f3;
    font-size: 1.25rem;
    cursor: pointer;
    margin-bottom: 1.5vh;
}
.contactIcons {
    cursor: pointer;
    color: #3bffff;
}
.questionButton {
    width: 100%;
    background-color: #f067b7;
    border: 2px solid #f3f3f3;
    margin-bottom: 0.75vh;
    color: #f3f3f3;
    font-size: 1rem;
    cursor: pointer;
}
#block {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    pointer-events: all;
}
#notif {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-height: 100vh;
    font-size: xx-large;
    padding: 10%;
}
@media (max-width: 767.98px), (max-width: 1024px) and (orientation: portrait) {
    .alignbox {
        align-items: flex-end;
    }
    .popupbox {
        bottom: 0px;
        max-height: 35vh;
        padding: 10px;
    }
    #notif {
        font-size: x-large;
    }
}
@media (max-width: 767.98px) {
    html {
        font-size: 12px;
    }
}