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

@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;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

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

a {
    text-decoration: none;
}

.aa {
    color: #000;
    text-align: center;
    font-size: 6rem;
    text-transform: uppercase;
    margin: 0 20px
}


.img {
    max-width: 600px;
    margin-top: 60px;
    margin-bottom: 10px;
}

main p {
    margin-top: 100px;
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 60px;
}

.action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.action a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.1s ease;
    width: 210px;
    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: 200px;
}

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

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