@font-face {
    font-family: 'Spy Agency';
    src: url('https://spy-academy.app/static/spyagency3_2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1C1B33;
    color: #00FF00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px;
}

h1 {
    font-family: 'Spy Agency', sans-serif;
    font-size: 50px;
    margin-bottom: 20px;
    color: #00FF00;
}

p {
    font-size: 25px;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons a img {
    height: 8vw;
    max-height: 60px;
    object-fit: contain;
}

footer {
    margin-top: 40px;
    font-size: 26px;
    color: #FFFFFF;
}

a {
    color: #00FF00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .buttons a img {
        height: 10vw;
    }
    footer {
        font-size: 1.5rem;
    }
}
