@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap'); /*Main Sans Font*/
@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap'); /*Main Serif Font*/
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap'); /*Alternative Bold Font*/
@import url('https://fonts.googleapis.com/css?family=Archivo+Black&display=swap'); /*Alternative Bold Font*/
/*translated fonts*/
@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap'); /*Main Font THAI*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap'); /*Main Font KOREAN*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap'); /*Main Font Tradition Chinese*/

body {
    background-color: #000;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    outline: none;
    vertical-align: baseline;
    color: #fff;
}

.header {
    width: 100%;
    height: 8vh;
    background-color: rgba(245, 245, 245, 0.87);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: rgba(245, 245, 245, 0.87);
    width: 100%;
    height: 5vh;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.ut-container {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.ut-header{
    width: 100px;
}
h2{
    color: #000;
}
p{
    color: #2a2929;
    font-size: small;
}
