/* Import components */
@import url("components/container.css");
@import url("components/avatar.css");
@import url("components/button.css");
@import url("components/banner.css");
@import url("components/card.css");

/* Global styles */
body {
    background: rgb(238, 238, 238);
    color: #333;
    font-size: 18px;
    font-family: 'Arial', serif;
    margin: 0;
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: bold;
    color: #2563eb;
}

a {
    text-decoration: none;
    color: #BABF94;
}

a:hover {
    color: #1e40af;
}

/* Container */
.container { 
    width: 700px;
    margin: 40px auto;
}

@media (max-width: 750px) {
    .container { width: 600px; }
}

@media (max-width: 500px) {
    .container { width: 90%; }
}

/* Cards */
.card-white {
    background-color: white;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    margin: 20px 0;
    text-align: center;
}

/* Avatar */
.img-circle {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 20px 0;
}

/* Buttons */
.btn-grey {
    background-color: lightblue;
    color: blue;
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 15px;
}

.btn-grey:hover { 
    background-color: #a0d4ff;
    color: white;
}

/* List Inline */
.list-inline {
    list-style: none;
    padding-left: 0;
}

.list-inline li {
    display: inline;
    padding: 10px;
}

.list-inline i {
    font-size: 50px;
    color: #2563eb;
}