
body{
    background-color: #000;
    margin: 0;
    padding: 0;
}
header{
    background-color: #000;
    border-width: 0px;
    text-align: center;
    display: flex;
    padding: 1rem;
    align-items: center;
    gap: 2rem;
}
header h1{
    color: #f37f17;
    margin: 0;
    padding: 0;
}

header img{
    width: 110px;
}
main{
    display: flex;
    
}

img{
max-width: 100%;
}
nav{
    background-color: #f37f17;
    color: #000;
    text-align: center;
    padding: 10px 0;
}
nav a{
    color: #000;
    text-decoration: none;
    margin: 0 60px;
}
nav a:hover{
    text-decoration: underline;
}


.t1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    >div{
        width: 25%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem;

    }

}

.t2{
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    text-align: center;
    font-size: 25px;
}

.t3{
   width: 25%;
   display: flex;
   margin-left: auto;
   margin-right: auto;
   margin-top: 2%;
   margin-right: 55%;
   
   
}

.t4 button{
    border: 1px solid white;
    background-color: white;
    color: black;
    height: 60px;
    width: 200px;
    border-radius: 20px;
    font-size: 120%;
    margin-left: 29%;
}
.t4{
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    text-align: center;
    font-size: 20px;
    flex-direction: column;
}

@media screen and (max-width:576px){
     nav{
        display: none;

    }
    div{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .t1 img{
        width: 320px;
        height: 260px;
    }
}