* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'retropix', sans-serif;
}

@font-face {
    font-family: 'retropix';
    src: url('/public/ttf/retropix.ttf') format('truetype');
}

body {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden ;
    margin: 0;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.img {
    max-width: 600px;
    margin-top: 30px;
}

main p {
    margin-top: 40px;
    text-align: center;
    font-size: 2rem;
    color: #000;
}

.action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    bottom: 20px;.action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute; /* Ele se solta do fluxo e obedece ao bottom */
    bottom: 20px;       /* Agora ele fica a 20px do fim da página */
    width: 100%;        /* Garante que ele ocupe a largura toda para centralizar */
}
}

.action a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.1s ease;
    width: 110px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: #000000;
    padding: 2px;
    border: 2px solid #000000;
}

.border {
    border: 2px solid #ffffff;
    padding: 10px;
    width: 100px;
}

.action a:hover {
    background-color: #fff;
    color:#000;
    font-weight: bold;
}

.border:hover {
    border-color: #000;
}

.trailer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.trailer video {
    border: 2px solid #000;
    border-radius: 10px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

footer a {
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

@media (max-width: 768px) {
    header {
        margin-top: 20px;
    }

    header a {
        width: 900px;
        justify-content: center;
        display: flex;
        align-items: center;
        margin: 0 auto;
    }

    .img {
        max-width: 90%;
        margin-top: 30px;
    }

    main p {
        margin-top: 30px;
        font-size: 2rem; 
        padding: 0 15px;
    }

    .action {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }

    .trailer video {
        width: 95%;
        height: auto;
    }

    footer a {
        font-size: 1.2rem;
    }

    .copy {
        display:none
    }
    .dev {
        display:none
    }
}

.copy {
    text-align: right;
    margin-right: 20px;
    width: 50%;
}
.dev {
    text-align: left;
    margin-left: 20px;
    width: 50%;
}

