@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');
@import url('../css/components/date-bar.css');
@import url('../css/components/menu.css');
@import url('../css/components/profile.css');
@import url('../css/components/peek-cards.css');

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    font-family: "Doto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "ROND" 0;
    background-color: #2D2727;
    color: #F0EB8D;
    line-height: 150%;
}

.profile-picture {
    border-radius: 50%;
}

a {
    color: #327aec;
}

/* a:visited {
    color: #8F43EE; Purplish colour
} */

a:hover {
    color: #FA5C5C;
    transition: .5s;
}

.text-center {
    text-align: center;
}

.card-purple {
    background: #413543;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px 0px;
    text-align: center;
    top: 0;
    transition: 1s;
}

.menu {
    position: absolute;
    left: 200px;
    background: #413543;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;

}

.boundary {
    padding: 20px;
    border-color: #2D2727;
    border-width: 10px;
    position: relative;
}

.hidden {
    opacity: 0;
    transition: 1s;
}

.container {
    width: 600px;
    /* This sets the width */
    margin: 0 auto;
    /* This automatically sets left/right margins */

}

.list-inline>li {
    display: inline-block;
    padding: 0px 20px;
}

.list-inline {
    list-style: none;
    padding-left: 0px;
}

i {
    font-size: 300%;
}

.btn {
    background-color: #6B72E1;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
}

.btn-link {
    text-decoration: none;
}