    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body,
    ul,
    li,
    p {
        font-size: 18px;
        list-style: none;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    section {
        margin-right: 50px;
        margin-left: 50px;
    }
    
    a {
        text-decoration: none;
        color: rgb(17, 16, 105);
    }
    
    a:hover {
        color: #516af8;
    }
    
    footer {
        font-style: italic;
        font-size: 12px;
        background-color: black;
        color: #fff;
        padding: 10px;
    }
    
    .header {
        background: #fff;
        font-weight: bold;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px;
        align-items: center;
    }
    
    .header img {
        width: 250px;
    }
    
    .menu {
        display: flex;
    }
    
    .menu li {
        margin-left: 20px;
    }
    
    .menu li a {
        display: block;
        padding: 10px;
    }
    
    .construccion {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 20px
    }
    
    .construccion h2 {
        font-style: italic;
    }
    
    .construccion h3 {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .information {
        padding: 20px;
    }
    
    .information h2 {
        padding: 10px;
    }
    
    .icons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        padding: 10px;
    }
    
    .icons>img {
        width: 25px;
        height: 20px;
    }
    
    #chamada {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    #endereco {
        color: rgb(47, 44, 236);
        font-weight: 700;
        font-style: italic;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    @media (min-width: 400px) {
        body {
            font-size: 14px;
        }
    }
    
    @media (min-width: 600px) {
        body {
            font-size: 16px;
        }
    }
    
    @media (min-width: 800px) {
        body {
            font-size: 18px;
        }
    }
    
    @media (min-width: 330px) {
        .contacts {
            display: grid;
            grid-template-columns: 1fr;
        }
        footer {
            display: flex;
            justify-content: center;
        }
    }
    
    @media (min-width: 730px) {
        .contacts {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        footer {
            display: inherit;
        }
    }