@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    background-color: #191a1b;
    color: #b02bff;
    font-family: 'Monsterrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

p {
    line-height: 1.6;
    margin: 0.8em 0;
    text-align: left;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.content {
    max-width: 60ch;
    width: 500px;
    margin: 40px auto;
    border: 2px solid #b02bff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(199, 43, 255, 0.7);

    clip-path: inset(50% 0 50% 0 round 12px);
    opacity: 0;
    animation: openUp 1s ease-out forwards;
}

h1, h2, h3 {
    text-align: center;
}

h2 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.emoji {
    height: 20px;
    width: 20px;
    vertical-align: middle;
}

a {
    color: #c72bff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

a:hover {
    color: #e08bff;
    border-bottom-color: #c72bff;
}

a:focus {
    outline: 2px solid #c72bff;
    outline-offset: 2px;
}

@keyframes openUp {
    from { clip-path: inset(50% 0 50% 0 round 12px); opacity: 0; }
    to   { clip-path: inset(0 0 0 0 round 12px); opacity: 1; }
}
