@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
    margin: 0;
    padding: 0;
    background-color: #252525!important;
    color: white!important;
    font-family: Lato;
}

.divider {
    width: 20%;
    border-top: 1px solid rgb(255, 255, 255);
    margin: 15px 40% 15px 40%;
}

/* LOGIN */

#login-main {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-content: space-around;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    background:
    linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    url('assets/farssibg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#login {
    width: 400px;
    height: 290px;
    margin: auto;
    background-color: #3f3f3f;
    box-shadow: 0px 0px 10px 3px #1a1a1a;
    text-align: center;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 15px;
    padding-top: 60px;
    position: relative;
    color: white;
}

#login h1 {
    font-size: 30px;
    margin-top: 20px;
}

#login-header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background-color: rgb(22, 79, 185);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-align: left;
    padding: 10px 0;
}

#login-header img {
    height: 40px;
    float: left;
    padding-left: 10px;
}

#login-header h1 {
    margin: 0;
    line-height: 40px;
    font-size: 30px;
    float: left;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 2px solid white;
    color: white;
}

/* MAIN */
#topbar {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    background-color: rgb(22, 79, 185);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-align: left;
    padding: 15px 15px;
}

#logo img {
    height: 40px;
    float: left;
    padding-left: 10px;
}

#logo h1 {
    margin: 0;
    line-height: 40px;
    font-size: 30px;
    float: left;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 2px solid rgb(22, 79, 185);
    color: rgb(22, 79, 185);
}

#user {
    float: right;
}

#avatar {
    border-radius: 100%;
    float: left;
    height: 40px;
}

#name {
    float: left;
    line-height: 40px;
}

.section {
    padding: 25px;
    max-width: 900px;
}

.left {
    max-width: 900px;
}

#logout button {
    border: none;
    background: none;
    padding: 0;
}

#character {
    padding: 10px;
    background-color: rgb(58, 58, 58);
    border-radius: 3px;
    width: 100%;
    min-width: 400px;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 5px 0 5px 0;
}

#character i {
    font-size: 40px;
    float: left;
}

#character h5 {
    line-height: 70px;
    margin: 0;
    margin-left: 15px;
}

#character #info {
    position: absolute;
    right: 10px;
    color: white;
    text-decoration: none;
}

#statistics {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
}

#statistic {
    background-color: rgb(58, 58, 58);
    width: 20%;
    margin: 10px;
    position: relative;
    min-width: 300px;
}

#statistic p {
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: rgb(88, 88, 88);
    color: rgb(255, 255, 255);
    padding: 5px;
}

#statistic h1 {
    padding: 20px;
    margin: 0;
    text-align: center;
}