@import url(./components/education_block.css);
@import url(./components/experience_block.css);
@import url(./components/contacts_page.css);

.container {
    width: 700px;
    margin: 40px auto;
}

@media (max-width: 960px) {
    /* For a screen < 960px, this CSS will be read */
    .container {
      width: 700px;
    }
  }


  @media (max-width: 720px) {
    /* For a screen < 720px, this CSS will be read */
    .container {
      width: 500px;
    }
  }

  @media (max-width: 540px) {
    /* For a screen < 540px, this CSS will be read */
    .container {
      width: 300px;
    }

    .card-education-info {
        display: grid;
        place-items: center;
    }

    .card-education-info > div {
        width: 100%;
        margin-bottom: 20px;
    }

    .card-experience-info {
        display: grid;
        place-items: center;
        margin-left: 19px;
    }

    .card-experience-info > div {
        width: 100%;
        margin-bottom: 20px;
    }
  }

body {
    background: #F7F9FC;
    color: #575F7D;
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: lighter;
}

.title {
    color: #575F7D;
    font-size: 32px;
    font-weight: 900;
}

h2 {
    color: #7ECE90;
    font-size: 20px;
    font-weight: lighter;
    font-weight: 500;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}

a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #6B72E1;
    font-weight: 600;
    font-size: 16px;
}

a:hover  {
    text-decoration: underline;
}

img {
    width: 100px;
}


.card {
    background-color: white;
    padding: 40px;
    box-shadow: 0px 10px 30px rgba(63, 53, 53, 0.1);
    border-radius: 4px;
    margin: 20px 0px;
    text-align: center;
}


.img-circle {
    border-radius: 50%;
}

p {
    margin-bottom: 40px;
}

.btn-blue {
    background-color: #6B72E1;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
}

.list-inline {
    list-style: none;
    padding-left: 0px;
}

.list-inline li {
    display: inline;
    padding: 10px;
}

li > a:hover {
text-decoration: none;
}

i {
font-size: 30px;
color: #575F7D;
}
