body {
    background-color: #181818;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
}

.container {
    max-width: 600px;
    margin: 12rem auto 0;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 3rem;
}

h1 {
    color: #FDFDFD;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

h1.nav-links {
    font-weight: 300;
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        gap: 0.25rem;
    }
}

p {
    color: #B3B3B3;
    font-weight: 300;
    padding-bottom: 1rem;
}

.header a {
    text-decoration: none;
    color: #FDFDFD;
}

a {
    color: #B3B3B3;
}

.dotted-box,
a.dotted-box {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.dotted-box {
    margin-top: 3rem;
    position: relative;
    border: 1px solid #B3B3B3;
    border-radius: 5px;
    width: 100%;
    height: 200px;
    background-image: radial-gradient(circle, #5d5d5d 0.6px, transparent 0.75px);
    background-size: 8px 8px;
    background-color: transparent;
    transition: transform 0.2s ease;
}

.dotted-box:hover {
    transform: translateY(-10px);
}

.box-label {
    position: absolute;
    color: #B3B3B3;
    font-weight: 300;
    font-size: 1rem;
    padding: 12px;
}

.box-label-br {
    bottom: 0;
    left: 0;
}

.box-label-tr {
    top: 0;
    right: 0;
}
