@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;300&display=swap");

:root {
    --c0-4vw: clamp(2.4px, 0.4vw, 4.8px);
    --c1-25vw: clamp(7.5px, 1.25vw, 15px);
    --c2vw: clamp(12px, 2vw, 24px);
    --c2-5vw: clamp(15px, 2.5vw, 30px);
    --c4vw: clamp(24px, 4vw, 48px);
}
#portfolio-title {
    font-family: "Outfit", sans-serif;
    font-weight: 100;
    color: white;
    font-size: var(--c2-5vw);
    margin-bottom: var(--c2vw);
}
body {
    margin: 0;
    background-color: black;
}
.area-center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
a,
p {
    font-weight: 300;
    font-size: var(--c4vw);
    margin: 0;
    text-align: left;
    line-height: 1.4em;
    text-decoration: none;
}
.links {
    display: block;
    color: white;
    padding: var(--c2vw) 0;
}
.links:hover {
    color: red;
}
.back-link:hover {
    color: red;
}
.back-link {
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 100;
    color: white;
    font-size: var(--c2vw);
    margin-bottom: var(--c2vw);
}
