﻿@charset "UTF-8";
/* CSS Document */
/* Escritorio */
@media only screen and (min-width: 360px) {
    body {
        width: 100%;
        display: block;
    }

    main{
        display: block;
        width: 100%;
        text-align: center;
    }

    main a {
        text-decoration: none;
        color: black;
    }
    /*scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
      }
  
    ::-webkit-scrollbar-thumb {
        background: #4bba70; 
        border-radius: 5px;
        border: 1px solid white;
    }

    .flex-center{
        width: 1330px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;    
        text-align: center;
    }

    .img-link{
        width: 100px;
        height: 100px;
        margin-left:60px;
        margin-right: 60px;
        margin-top: 10px; 
    }

    .flex-center-item{    
        width: 1330px;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
        margin: 1%;
    }

    .flex-center-item img {
        width: 200px;
        height: 200px;
    }
}

@media only screen and (max-width: 360px) {
    body {
        width: 100%;
        display: block;
    }

    main{
        display: block;
        width: 100%;
        height: 400px;
        text-align: center;    
    }

    main a {
        text-decoration: none;
        color: black;
    }

    /*scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: #4bba70; 
        border-radius: 5px;
        border: 1px solid white;
    }

    .flex-center{
        width: 360px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;    
        text-align: center;
    }

    .img-link{
        width: 80px;
        height: 80px;
        margin-left:40px;
        margin-right: 40px;
        margin-top: 10px; 
    }
}
