@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

html {
    background-color: #007aff;
}

body {
    font-family: 'Public Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

a {
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    text-decoration: none;
    border-bottom: 1.7px solid rgba(255, 255, 255, 0.6);
}

main {
    padding: 15px;
    border: 1.7px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    max-width: 500px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fantasma {
    opacity: 0.6;
}

#copy {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 500px) {
    body {
        justify-content: start;
    }
}