html,
body,
div,
img,
a {
    padding: 0;
    border: none;
    margin: 0;
    box-sizing: border-box;
}

html,
body,
.page {
    width: 100%;
    height: 100%;
    background: #010101;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    color: #000000;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.head,
.foot {
    width: calc(100% - 4px);
    padding: 10px 10px 10px 16px;
    border: 2px solid #00c1ff;
    box-shadow: 0px 0px 10px 0px #00c1ff;
    border-radius: 10px;
    margin: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot {
    border-radius: 10px 10px 0 0;
}

.head .logo_img,
.foot .logo_img {
    width: 48%;
}

.head .btn,
.foot .btn {
    width: 45%;
    animation: scale_animation 1s infinite;
}

.main {
    width: 100%;
    flex: 1;
    overflow-y: auto;
}

.main::-webkit-scrollbar {
    display: none;
}

.service_btn {
    width: 28%;
    position: absolute;
    top: 40%;
    right: 0%;
}

@keyframes scale_animation {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.9);
    }
}