* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    color: #25385e;
    margin-bottom: 20px;
}

.coiny-regular {
    font-family: 'Coiny', system-ui;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}

a {
    color: #ffffff;
    background: #6e99c4;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 5px;
    font-size: 25px;
    transition: all 0.3s ease;
}

a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}




