@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500&display=swap');

:root {
    --albert-sans: 'Albert Sans', sans-serif;
    --sen: 'Sen', sans-serif;

    --bg-color: rgb(1, 1, 2);
    --text-color: white;
    --sec-text-color: gray;

    --cool-green: #B1B695;
    --cool-orange: #FCD0A1;
}

* {
    font-family: inherit;
    margin: 0;
    padding: 0;
    font-family: var(--sen);
    color: inherit;
}

/* Necessary */

section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 5vmin 0;
}

section .wrapper>.header-desc {
    color: var(--sec-text-color);
    font-size: 3vmin;
    margin-top: 1vmin;
    margin-bottom: 3vmin;
}

a[href] {
    text-decoration: none;
}

.wrapper {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

body {
    background-color: var(--bg-color);
}

/* Texts */

h1 {
    font-size: 10vmin;
}

h3 {
    font-size: 4vmin;
}

.invert-color {
    color: var(--bg-color);
    background-color: var(--text-color);
}

body {
    min-height: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    color: var(--text-color);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.662);
    z-index: 10;
    padding: 2vmin 0;
    user-select: none;
    backdrop-filter: blur(4px);
}

header h3 {
    font-family: var(--albert-sans);
}

header h3 sub {
    font-size: 0.5em;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .wrapper div:nth-of-type(2) {
    display: flex;
    gap: 1vmin;
}

header .wrapper div:nth-of-type(2) a {
    font-size: 2vmin;
    padding: 1vmin;
    text-transform: uppercase;
    transition-duration: 100ms;
    border-radius: 2px;
    cursor: pointer;
}

header .wrapper div:nth-of-type(2) a:hover {
    background-color: rgba(245, 222, 179, 0.226);
}

/* Footer */

footer {
    background-color: var(--text-color);
    color: var(--bg-color);
}

footer p {
    text-align: center;
    padding: 3vmin 0;
    font-size: 2.5vmin;
}

@media screen and (max-width: 1024px){
	
	.wrapper {
		width: 90%;
	}
	
}