@import url(https://fonts.googleapis.com/css2?family=Joan&display=swap);
*, ::after, ::before {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
li, ol, ul {
    list-style: none;
}
img {
    vertical-align: top;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}
body, html {
    height: 100%;
    line-height: 1;
}
body {
    font-family: Joan, serif;
    font-size: 16px;
}
.wrapper {
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}
.main {
    flex: 1 1 auto;
}
[class*="__container"] {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 10px;
}
aside::after, section::after {
    content: '';
    display: block;
    clear: both;
}
.header {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 10;
}
.header__logo {
    width: fit-content;
    margin: 30px auto 0;
    transition: transform .3s;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.header__logo:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.header__logo a {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #eee;
}
.main__content {
    background: url("/26778b355655881020222af3c97b3a1772d0fd5e/profile.jpg") top 14% center/cover no-repeat;
    position: relative;
}
.main__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: rgba(16, 8, 6, .6);
    z-index: 2;
}
.contact-me {
    padding: 200px 0;
}
.contact-me__title {
    font-size: 36px;
    font-weight: bold;
    color: #eee;
    position: relative;
    text-align: center;
    z-index: 3;
    padding: 0 0 60px;
}
.contact-me__form{
    background-color: #100806;
    position: relative;
    margin: 0 auto;
    width: 600px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #eee;
    border-radius: 30px;
    padding: 20px 80px 40px;
    z-index: 3;
}
.input-wrap{
    position: relative;
}
.form__input,
.form__textarea{
    line-height: 1.3;
    color: #eee;
}
.form__label{
    position: absolute;
    top: -4px;
    color: #eee;
    transition: .3s;
}
.form__textarea{
    display: block;
    margin: 80px auto 40px;
    width: 100%;
    padding: 2px 2px 0px 2px;
    border: none;
    border-bottom: 1px solid #eee;
    background-color: transparent;
    outline: none;
    transition: .3s;
    resize: none;
    overflow: hidden;
}
.form__input{
    display: block;
    margin: 0 auto 40px;
    width: 100%;
    padding: 2px 2px 0px 2px;
    border: none;
    border-bottom: 1px solid #eeeeee70;
    background-color: transparent;
    outline: none;
    transition: .3s;
}
.form__input:focus, .form__textarea:focus{
    border-bottom: 1px solid #eee;
}
.form__input:focus ~ .form__label,
.form__textarea:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label,
.form__textarea:not(:placeholder-shown) ~ .form__label{
    top: -18px;
    left: 0;
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    transform: translate(0%);
    -webkit-transform: translate(0%);
    -moz-transform: translate(0%);
    -ms-transform: translate(0%);
    -o-transform: translate(0%);
}
.form-btn{
    display: block;
    margin: 0 auto;
    padding: 10px 90px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #eee;
    background: #2b1510;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.form-btn:hover{
    background: #321109;
}
.form-btn:active{
    box-shadow: 0px 0px 10px #eeeeee25;
}
.footer__content {
    background-color: #100806;
    padding: 50px 0;
}
.footer__social-media {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}
svg path {
    transition: fill .3s;
    -webkit-transition: fill .3s;
    -moz-transition: fill .3s;
    -ms-transition: fill .3s;
    -o-transition: fill .3s;
}
.footer__social-media a:hover svg path {
    fill: #eeeeee;
}
.footer__social-media:hover svg path {
    fill: #eeeeee40;
}
.links__list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.links__list-item:not(:first-child) {
    margin-top: 30px;
}
.links__list-item a {
    color: #eee;
    font-size: 32px;
    line-height: 1.2em;
    letter-spacing: 2px;
    border-bottom: 1px solid #eeeeee40;
    transition: border-bottom .3s;
    -webkit-transition: border-bottom .3s;
    -moz-transition: border-bottom .3s;
    -ms-transition: border-bottom .3s;
    -o-transition: border-bottom .3s;
}
.links__list-item a:hover {
    border-bottom: 1px solid #eee;
}

.links__list-item {
    text-align: center;
}
@media only screen and (min-width: 1440px) {
    .header__logo a {
        font-size: 20px;
        letter-spacing: 2px;
    }
}
@media only screen and (min-width: 1650px) {
    .header__logo a {
        font-size: 22px;
    }
    .social-media__facebook svg {
        width: 32px;
        height: 32px;
    }
    .footer__social-media a svg {
        width: 35px;
        height: 35px;
    }
    #social-media__bandsintown svg {
        width: 30px;
        height: 30px;
    }
    #social-media__tiktok svg {
        width: 42px;
        height: 42px;
    }
    #social-media__mail svg {
        width: 40px;
        height: 40px;
    }
}
@media only screen and (min-width: 2000px) {
    .header__logo a {
        font-size: 24px;
    }
    .social-media__facebook svg {
        width: 42px;
        height: 42px;
    }
    .footer__social-media a svg {
        width: 45px;
        height: 45px;
    }
    #social-media__bandsintown svg {
        width: 40px;
        height: 40px;
    }
    #social-media__tiktok svg {
        width: 52px;
        height: 52px;
    }
    #social-media__mail svg {
        width: 50px;
        height: 50px;
    }
}
@media only screen and (max-width: 1020px) {
    .contact-me {
        padding: 150px 0;
    }
}
@media only screen and (max-width: 768px) {
    .contact-me {
        padding: 120px 0;
    }
    .contact-me__form {
        width: 100%;
    }
    .contact-me__title {
        font-size: 32px;
    }
    .links__list-item a {
        font-size: 22px;
    }
}
@media only screen and (max-width: 480px) {
    .contact-me {
        padding: 125px 0;
    }
    .contact-me__form {
        padding: 20px 30px 40px;
    }
    .contact-me__title {
        font-size: 22px;
    }
    .form__label {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
    .form-btn {
        width: 100%;
        padding: 20px 0;
    }
    .links__list-item a {
        font-size: 18px;
    }
    .social-media__facebook svg {
        width: 12px;
        height: 12px;
    }
    .footer__social-media a svg {
        width: 15px;
        height: 15px;
    }
    #social-media__bandsintown svg {
        width: 10px;
        height: 10px;
    }
    #social-media__tiktok svg {
        width: 22px;
        height: 22px;
    }
    #social-media__mail svg {
        width: 20px;
        height: 20px;
    }
}
