 /* Keyboard shortcuts!
Swedish keyboard:
{ = option + 7
*/ 

/* Fonts */
@font-face {
    font-family: 'Suisse';
    src: url('./fonts/SuisseIntlMono-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Suisse';
    src: url('./fonts/SuisseIntlMono-Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Core design on every page */
body {
    --primary: white;
    --primary-dark: black;
    background-color: var(--primary);
    color: black;
    margin: 0;
    padding: 0;
}

h1 {
    /* MY NAME - Center */
    font-family: "scandia-web", sans-serif;
    color: var(--primary-dark);
    font-size: 14vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    align-self: center;
    letter-spacing: -0.05em;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.title {
    color: var(--primary-dark);
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-5vh); 
}

.title p {
    /* Categories */
    color: var(--primary-dark);
    font-family: 'Suisse', monospace;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    align-self: center;
    margin: -40px;
}

.contact {
    font-family: 'Suisse', monospace;
    color: var(--primary-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    padding: 32px;
    text-align: left;
    z-index: 100;
    justify-content: left;
}

.contact:hover {
    opacity: 45%;
}

menu {
    /* Menu - Top Left */
    font-family: 'Suisse', monospace;
    color: var(--primary-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    list-style: none;
    margin: 0;
    padding: 32px;
    display: flex; 
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; 
    text-align: left;
    z-index: 100;
}

nav {
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-dark);
}

menu a {
    color: var(--primary-dark);
    text-decoration: none;
}

menu a:hover {
    opacity: 45%;
}

li {
    margin: 0;
}

ul {
    padding: 0;
}

/* Footer links */
.footer-links {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    z-index: 100;
    background-color: var(--primary);
    padding: 32px;
    box-sizing: border-box;
}

.footer-links a {
    color: var(--primary-dark);
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 45%;
}

.email-link {
    margin-left: auto;
    position: fixed;
    bottom: 32px;
    right: 32px;
}

.content {
    padding-top: 0px; 
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
}

.video-player {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding-top: 50px;
    padding-right: 100px;
    padding-bottom: 100px;
}

.video-1 {
    margin-left: 200px;
    margin-top: auto;
}

.video-2 {
    margin-left: 500px;
    margin-top: auto;
}

.picture {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.pic-1 {
    margin-right: 200px;
    margin-top: 600px;
}