@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

body {
    background-color: #364d87;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Noto Sans Thai', sans-serif;
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    width: 60%;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    background-color: #273a60;
    width: 100%;
    text-align: center;
    padding: 1%;
    margin-bottom: -30px;
    color: #ffffff;
}

.header .logo {
    width: 300px;
    height: auto;
    vertical-align: middle;
    margin-bottom: -100px;
    margin-top: -75px;
}

.header .studio-name {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
}

.content {
    padding: 40px;
    text-align: center;
    width: 100%;
}

.welcome-msg {
    font-size: 24px;
    color: #364d87;
    margin-bottom: 20px;
}

.start-button {
    background-color: #8fbc8f;
    color: #ffffff;
    padding: 20px 40px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

.start-button:hover {
    background-color: #7ca97c;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-links a {
    background-color: #512da8;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    background-color: #433b6b;
    transform: scale(1.05);
}

.footer {
    background-color: #f5f5f5;
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-text {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.footer-text a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: #295cb5;
}
