* {
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: "Overpass", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

main {
    width: 100vw;
    height: 100vh;
    background-image: url(../MEDIA/IMG_0001.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

article {
    width: 320px;
    height: 480px;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 2px solid #fff;
    border-radius: 2rem;
    padding: 2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

article h1 {
    color: #fff;
}

article h2 {
    font-family: "Overpass-Mono", monospace;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color: #fff;
}

article p {
    text-align: center;
    color: #fff;
}

article nav {
    display: flex;
    gap: 2rem;
}

article nav > a {
    width: 2rem;
    height: 2rem;
    border: 1px solid #fff;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;

    transition: .3s ease;
}

article nav > a:hover {
    background-color: #fff;
    color: #344754;
}

h3 {
    display: flex;
    align-items: center;
    font-family: "Overpass-Mono", monospace;
    font-weight: 300;
    font-size: 1rem;
    color: #fff;
}