* {
    font-family: "Roboto", sans-serif;
}
html,
body {
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -2;
}
#loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.shapes {
    width: 88px;
    height: 76.208px;
    position: relative;
    background: conic-gradient(
        from 120deg at 50% 64%,
        #0000,
        #7a251a 1deg 120deg,
        #0000 121deg
    );
    transform-origin: 50% 50%;
    animation: shapes-b3u1dghg 1.2000000000000002s infinite
        cubic-bezier(0.3, 1, 0, 1);
}

.shapes:before,
.shapes:after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    transform-origin: 50% 66%;
    animation: shapes-ki907ohg 1.2000000000000002s infinite;
}

.shapes:after {
    --s: -1;
}

@keyframes shapes-b3u1dghg {
    0%,
    30% {
        transform: rotate(0);
    }

    70% {
        transform: rotate(120deg);
    }

    70.01%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shapes-ki907ohg {
    0% {
        transform: rotate(calc(var(--s, 1) * 120deg)) translate(0);
    }

    30%,
    70% {
        transform: rotate(calc(var(--s, 1) * 120deg))
            translate(calc(var(--s, 1) * -8.8px), 17.6px);
    }

    100% {
        transform: rotate(calc(var(--s, 1) * 120deg)) translate(0);
    }
}

@font-face {
    font-family: "vegabond";
    src: url("../fonts/vegabond.ttf") format("truetype");
}
@font-face {
    font-family: "Forsythe-Normal";
    src: url(../fonts/Forsythe-Normal.otf) format("opentype");
}
@font-face {
    font-family: "Forsythe-Bold";
    src: url(../fonts/Forsythe-Bold.otf) format("opentype");
}

.welcome__container {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url("../images/welcome.jpg");
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-blend-mode: darken;
    align-items: center;
    min-height: 100vh;
    height: auto;
    flex-direction: column;
    opacity: 0;
    animation: fade-in 1s ease-in forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.top-left {
    display: flex;
    position: absolute;
    top: 1em;
    left: 1em;
    align-items: center;
}

.top-left img {
    width: 100px;
    height: 100px;
}
.top-left h1 {
    font-family: "Forsythe-Normal", sans-serif;
    font-size: 2.5em;
    letter-spacing: 3px;
    background: -webkit-linear-gradient(#d89e03, #ffe08e);
    background-clip: text;
    height: 4rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.center__text {
    display: block;
    position: relative;
    color: #ffffff;
    letter-spacing: 3px;
    width: 80%;
    animation-direction: normal;
    animation: slide-in 1s ease-in-out forwards;
}

.center__text h2,
.center__text h3,
.center__text p {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    text-shadow: 2px 2px 4px #020101, -2px -2px 4px #000000;
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.center__text h2 {
    font-size: 4em;
    margin: 1em auto 0.7em auto;
    font-family: "Vegabond", sans-serif;
}

.center__text h3 {
    font-size: 2em;
    margin: 1em auto 2em auto;
    font-family: "Forsythe-Normal", sans-serif;
}

@media (max-width: 768px) {
    .welcome__container {
        background: url("../images/welcome-cropped.jpg");
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: darken;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        min-height: 100vh;
        height: auto;
    }
    .top-left {
        position: absolute;
        display: flex;
        top: 0;
        left: 0;
        color: white;
        flex-direction: row;
        align-items: center;
    }
    .top-left img {
        width: 60px;
        height: 60px;
    }

    .top-left h1 {
        font-family: "Forsythe-Bold", sans-serif;
        font-size: 1.5em !important;
        height: 1em;
    }

    .center__text {
        display: block;
        position: relative;
        color: #ffffff;
        letter-spacing: 5px;
        animation-direction: normal;
        animation: slide-in 1s ease-in-out forwards;
    }

    .center__text h2 {
        font-size: 4em !important;
    }
    .center__text h3 {
        font-size: 1.5em !important;
    }

    .slideshow {
        position: relative;
        width: 300px; /* Adjust as needed */
        min-height: 360px; /* Adjust as needed */
        height: auto;
        overflow: hidden;
        margin: 2em auto;
    }

    .center__text h2,
    .center__text p {
        text-align: center;
        text-shadow: 3px 1px 3px #000000, -3px -1px 3px #000000;
    }
}
h1.music_text {
    font-size: 40px;
    margin-left: 2em;
    font-family: "Forsythe-Normal", sans-serif;
    color: #fff;
}
/* Custom controls */

.about-me {
    background-image: linear-gradient(#413d3482, rgb(28 27 27 / 74%)),
        url(../images/about-me.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    height: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-about {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: stretch;
    white-space: wrap;
    word-wrap: break-word;
}

.text-about h2 {
    position: relative;
    color: #fff;
    font-family: "vegabond", sans-serif;
    font-size: 4em;
    margin: 1.5em auto;
    text-align: center;
    letter-spacing: 5px;
}

.text-about p {
    padding: 0.1em 1em;
    display: flex;
    width: 100%;
    font-size: 1.7em;
    height: auto;
    position: relative;
    color: #fff;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .text-about h2 {
        font-size: 2.6em;
    }
    .text-about p {
        font-size: 19px !important;
    }
}

#contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 125vh;
    z-index: -1;
    top: 0;
    left: 0;
    background-image: url("../images/nicebackground.avif");
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#contact {
    display: block;
    width: 100%;
    position: relative;
    height: 70em;
    margin: 0 auto;
    z-index: 2;
    color: #fff;
    overflow: hidden;
}

.contact_container {
    width: 100%;
    height: 100vh;
    display: flex;
}

.email_card {
    display: block;
    width: 100%;
    position: relative;
    height: -webkit-fill-available;
    margin: 2em auto;
    border-radius: 40px;
    z-index: 2;
    color: #fff;
}

h1.contact_text {
    display: block;
    margin: 1em;
    font-size: 2em;
    letter-spacing: 3px;
    line-height: 30px;
    font-family: "Forsythe-Bold", sans-serif;
    text-align: center;
}

.email_form {
    width: 80%;
    margin: 1em auto;
}

form#email_form {
    display: flex;
    flex-direction: column;
}

.input_container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin: 1em;
}

label.form_label {
    font-size: 20px;
    margin-top: 2em;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5),
        2px 2px 2px rgba(206, 206, 206, 0);
}

.form_input {
    width: 80%;
    padding: 0.5em;
    font-size: 20px;
    border-radius: 3px;
    border: none;
}

.form_textarea {
    width: 80%;
    height: 200px;
    font-size: 20px;
    border-radius: 3px;
    border: none;
}

button.form_submit {
    padding: 0.8em 1.6em;
    font-family: system-ui;
    font-size: 1.5em;
    letter-spacing: 3px;
    background: -webkit-linear-gradient(#d89e03, #ccbf07);
    color: white;
    margin: auto;
    border: 1px solid #c3d103;
    border-radius: 10px;
    cursor: pointer;
}
button.form_submit:hover {
    background-color: #e0ff58;
}

.social_container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.social_media {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.social_circle {
    width: 7em;
    height: 7em;
    padding: 1em;
    background: #0000008f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: background 0.5s ease-in-out;
}

.social_circle:hover {
    background: rgb(0, 0, 0);
}

@media (max-width: 768px) {
    .social_circle {
        width: 5em;
        height: 5em;
        padding: 1em;
        margin: 1em;
    }
    button.form_submit {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #contact {
        height: 75em;
    }
    #contact::before {
        height: 75em;
    }

    .contact_container {
        height: 120vh;
    }

    h1.contact_text {
        font-size: 1.5em;
    }

    .email_form {
        width: 100%;
        font-size: 10px;
    }

    .input_container {
        font-size: 15px;
        margin: 15px;
    }

    .social_media {
        margin: 2em;
        width: 90%;
    }

    .social_circle {
        width: 5em;
        height: 5em;
        display: flex;
        align-items: center;
    }

    .social_circle img {
        width: 3em;
        height: 3em;
    }

    .form_input {
        width: 70%;
        font-size: 16px;
    }

    .form_textarea {
        width: 70%;
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .navbar {
        font-size: 16px;
    }
    .top-left h1 {
        font-size: 2em;
    }
    .center__text h2 {
        font-size: 5em;
    }
    /*    .text-about h2 {
        font-size: 2.5em;
    } */

    .text-about p {
        font-size: 1.3em;
    }
    h1.contact_text {
        font-size: 1.8em;
    }

    .social_circle {
        width: 6em;
        height: 6em;
        padding: 1em;
    }

    button .form_submit {
        padding: 0.8em 1.4em;
        font-size: 1em;
    }
}

@media (min-width: 1600px) {
    .center__text h2 {
        font-size: 6em;
    }
    .center__text h3 {
        font-size: 3em;
    }

    .text-about h2 {
        font-size: 3.5em;
    }
}
