@import url('https://fonts.googleapis.com/css2?family=Bacasime+Antique&display=swap');

    body{
        background-color: black;
        font-family: "bacasime antique";
        color: white;
    }
        
    #menu{
        background-color: rgba(5,5,5);
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction:row;
        align-items: center;
    }

    a{ 
        text-decoration: none;
        color: white;
        text-indent: 123;
    }

    #menu ul{
        list-style: none;
    }

    #menu li{
        display: inline-block;
        padding: 15px 20px 15px 20px;
    }

    #menu li:hover{
        border-bottom: 3px solid #016fb893;
        background-color: rgba(0, 0, 0, 0.504);
    }
        
    #imglogo{
        width: 130px;
        margin-left: 30px;
    }
        
    #inicio{
        height: 790px; 
        overflow: hidden;
        display: flex;
        padding-left: 15px;
    }

    .imginicio{
        height: 90%;
        width: 100%;
        animation: imginicio 3s linear;
    }

    #continicio{
        background-color: rgba(0, 0, 0, 0.60);
        position: absolute;
        width: 81%;
        height: 500px;
        margin: 130px 130px 130px 130px;
    }

    #continicio:hover{
        background-color: rgba(0, 0, 0, 0.75);
    }

    #continicio h1{
        font-weight: normal;
        margin-top: 60px;
        font-size: 60px;
    }

    #continicio p{
        font-size: 20px;
        text-indent: 1em;
        width: 80%;
        margin-top: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    #modelos {
        display: block;
        width: 80%;
        height: 100%;
        padding-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    #modelos td{
        width: 50%;
    }

    .img-container{ 
        width: 100%;
        overflow: hidden;
    }
        
    .img-container img{
        width: 100%;
    }

    .imgbutton{
        -webkit-transition: -webkit-transform .5s ease;
         transition: transform .5s ease;
    }

    .imgbutton:hover img{
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .detalhesmodel{
        width: 100%;
    }

    .button{
        border: 1px solid;
        border-color: white;
        padding: 6px;
        float: right;
    }

    .button:hover{
        border-color: #0b78c0;
        transform: scale(0.5.1);
        transition: all 0.5s;
        font-size: 17px;
    }

    #contato{
        display: block;
        width: 80%;
        height: 150px;
        margin: 10px auto 0px auto;
        background-color: #016fb85c;
    }

    #contato table{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    #dadosdev{
        display: inline-block;
        margin: 10px auto 10px auto;
        text-align: center;
    }

    #dadosdev h1{
        font-weight: normal;
        font-size: 14px;
    }

    #dadosdev img{
        width: 50px;
        margin: 1px;
    }

    #dadosdev p{
        margin: 1px;
    }

    #desctrabalho{
        width: 100%;
        text-align: center;
    }

    #contato table span{
        font-size: 10px;
    }

    #rodape{
        width: 80%;
        background-color: white;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

    #rodape div{
        display: inline-block;
        align-items: center;
        text-align: center;
    }

    #imgrodape{
        width: 35%;
    }

    #imgrodape img{
        width: 180px;
        margin-left: 100px
    }

    #icosrodape{
        width: 45%;           
    }

    #icosrodape img{
        width: 35px;
        margin-left: 10px;
    }

    @keyframes imginicio{
        from{
            opacity: 0;
        }to{
            opacity: 1;
        }
    }