@font-face {
    font-family: "Spicy Rice";
    src: url("./assets/fonts/Spicy_Rice/SpicyRice-Regular.ttf") format("truetype");
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

html,
body,
div,
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: Arial, sans-serif;
}

/* End CSS Reset */



html {
    background-color: black;
    color: white;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    background: url('./assets/background.avif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

html, body {
  height: 100%;
  margin: 0;
}

h1 {
    font-family: "Spicy Rice", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    color: #C9BECD;
}

header {
    padding-top: 15px;
    margin-bottom: 20px;
}

header p {
    font-size: 1.1rem;
    color: #C9BECD;
}

main {
    flex: 1;
    padding-bottom: 90px;
}

footer {
    margin-top: auto;
    flex-shrink: 0;
}

.glass {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.29);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.29);
    color: white;
    transition: background-color 0.4s ease;
}

section:not(.bottom-section) {
    max-width: 500px;
}

ul {
    width: 100%;
}

.form-container {
    padding: 10px;
}

form input,
form button {
    padding: 8px;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
}

form button {
    background-color: #441B53;
    color: #C9BECD;
    /* border: 1px solid #C9BECD; */
    cursor: pointer;
    transition: background-color 0.4s ease;
}

form button:hover {
    background-color: black;
}

section .links li a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 15px;
    width: 75%;
    border-radius: 999em;
    margin-bottom: 20px;
}

section .links li a:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.profile-image {
    border-radius: 50%;
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-top: 20px;
}

.links svg {
    margin-right: 10px;
}

ul.socials {
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

ul.socials li a {
    color: white;
    font-size: 1.5rem;
    padding: 10px;
}

.bottom-section {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    inset: auto 0 0 0;
}

.music-player-container {
    padding-top: 10px;
    padding-bottom: 6px;
    width: 100%;
}

.music-player-container iframe {
    width: min(75%, 750px);
    max-width: 750px;
}

.form-container {
    margin-top: 15px;
}

.form-container p {
    margin-top: 10px;
}

.form-container form {
    display: flex;
}

.form-container button {
    flex: auto;
}

.bio {
    padding: 50px;
    margin-top: 100px;
}

.bio div {
    text-align: justify;
    border-radius: 10px;
    color: white;
    max-width: 340px;   
}

.bio h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: "Spicy Rice", serif;
    text-align: center;
}

@media screen and (min-width: 768px) {
    header {
        padding-top: 50px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    form input,
    form button {
        padding: 10px;
    }
}