@charset "UTF-8";

* {
    box-sizing: border-box;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    transition-property: none;
}

*:after,
*:before {
    box-sizing: border-box;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    transition-property: none;
}

html,
body,
div,
main,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
main {
    display: block;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a,
a:visited {
    text-decoration: none;
    color: inherit;
}

body {
    line-height: 1.6;
}

ol,
ul {
    list-style-type: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
}

input,
textarea {
    border-radius: 0;
}

button,
input[type="button"] {
    background: 0;
}

:required {
    box-shadow: none;
}

em,
i {
    font-style: italic;
}

strong,
b {
    font-weight: bold;
}

u {
    text-decoration: underline;
}

pre {
    font-family: Monaco, Courier, monospace;
    white-space: pre;
    white-space: pre-wrap;
    white-space: pre-line;
    word-wrap: break-word;
}

blockquote,
q {
    quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

a,
input[type="submit"],
input[type="button"],
button,
label[for] {
    cursor: pointer;
}

img {
    -ms-interpolation-mode: bicubic;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@font-face {
    font-family: "GT-America-Regular";
    src:
        url("../Portfolio_files/fonts/GT-America-Regular.woff2") format("woff2"),
        url("../Portfolio_files/fonts/GT-America-Regular.woff") format("woff"),
        url("../Portfolio_files/fonts/GT-America-Regular.eot?#iefix")
            format("embedded-opentype"),
        url("../Portfolio_files/fonts/GT-America-Regular.ttf")
            format("truetype");
}

/*Main Content _______________________________________________________________________________________________________________________*/

html {
    font-family: GT-America-Regular;
    font-style: normal;
    font-size: 16px;
    font-style: normal;
    line-height: 160%;
    color: #000000;
    margin: 0;
    cursor: default;
    justify-content: center;
    display: flex;
    overflow-x: hidden;
    background-color: #fdfdfc;
}

body {
    width: 100%;
    padding: 60px 10px 90px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    gap: 60px;
    align-self: stretch;
}

.gray {
    opacity: 0.4;
}

.Project {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
}

.Description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.SectionTitle {
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Work {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.Image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.Outlined {
    border: 1px solid #e8e8e8;
}

.Annotation {
    font-size: 12px;
}

.Divider {
    height: 1px;
    align-self: stretch;
    background: #e8e8e8;
}

#preview {
    position: absolute;
    width: 135px;
    height: 84px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.12s ease,
        transform 0.12s ease;
    pointer-events: none;
    object-fit: cover;
    background: #eee;
}

.Link,
.LinkedIn,
#EmailLink {
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.12s ease;
}

.Link:hover,
.LinkedIn:hover,
#EmailLink:hover {
    border-bottom: 1px solid #666;
}

.Footer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.PeaceUp,
.AtownDown {
    transition: transform 0.2s ease;
    display: block;
}

.Footer:hover .PeaceUp {
    transform: translateY(-4px);
}

.Footer:hover .AtownDown {
    transform: translateY(4px);
}

/*Breakpoints ________________________________________________________________________________________________________________________*/

@media screen and (max-width: 740px) and (orientation: portrait) {
    body {
        gap: 40px;
    }
    .SectionTitle {
        padding-top: 20px;
    }
}

@media screen and (min-width: 1800px) {
    body {
        max-width: 900px;
    }
}
