@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Pretendard';
    font-size: 14px;
}

.v-main {
    background: #edf2f6 !important;
}

ul,ol,li {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    border-radius: 5px;
}

input {
    border: none;
}

.v-btn {
    text-transform: none;
}

.v-input__details {
    display: none;
}
@media (min-width: 768px) {
    html {
    font-size: 15px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*loading*/
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #e0e0e0;
    border-bottom: 5px solid #fe9616;
    animation: spin 1s linear infinite;
    position: relative;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}