:root {
    --primary: #915CA2;
    --secondary: #8C579C;
    --dark: #3B134E;
    --white: #FFFCF7;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "lemon milk regular";
    src: url('./../fonts/lemon-milk-pro-ftr-regular.otf') format("woff");
}

@font-face {
    font-family: "lemon milk bold";
    src: url('./../fonts/lemon-milk-pro-ftr-bold.otf') format("woff");
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--secondary);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--dark);
    border-radius: 50px;
}

html {
    scroll-behavior: smooth;
}

.to-title {
    font-family: "lemon milk bold", sans-serif !important;
    font-weight: bold;
}

.to-text {
    font-family: "lemon milk regular", sans-serif !important;
    font-weight: 400;
    letter-spacing: 10px;
}

.fs-1 {
    font-size: 20px;
}

.fs-2 {
    font-size: 16px;
}

.fs-3 {
    font-size: 12px;
}

.fs-4 {
    font-size: 9px;
}

.fs-5 {
    font-size: 10px;
}


@media screen and (min-width: 720px) {
    .fs-4 {
        font-size: 12px;
    }

    .fs-5 {
        font-size: 14px;
    }

}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-dark {
    color: var(--dark);
}

.text-white {
    color: var(--white);
}

.bg-primary {
    background: var(--primary);
}

.bg-secondary {
    background: var(--secondary);
}

.bg-dark {
    background: var(--dark);
}

.bg-white {
    background: var(--white);
}

.mt-1 {
    margin-top: 10px;
}

.ml-1 {
    margin-left: 10px;
}


.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: var(--secondary);
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 50px 0;
}

.bg-image {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border-left: var(--dark);
    border-top: var(--dark);
    background: var(--dark);
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    margin-top: -3px;
    margin-left: -2px;
}

main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

main section {
    width: 90%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

article {
    width: 100%;
    margin-bottom: 40px;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--dark);
}

.title-area {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

button {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-left: var(--dark);
    border-top: var(--dark);
    border-color: var(--dark);
    border-radius: 4px;
    border-width: 5px;
    margin-top: 30px;
    cursor: pointer;
    margin-bottom: 15px;
}



footer {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    margin-top: 50px;
}

footer h6 {
    text-align: center;
}