@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;700&display=swap');
body{
    margin:0;
    padding:0;
    box-sizing:0;
    font-family: 'Raleway',sans-serif;
    background-color: #838288;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
input,button,textarea{
    border:none;
    outline:none;
}
/**********navigation****/
nav{
    display:flex;
    justify-content: space-around;
    align-items: center;
    left:0;
    top:0;
    width:100%;
    z-index:1;
}
nav ul{
    display:flex;
}
nav ul li a{
    height:40px;
    line-height: 43px;
    margin: 3px;
    padding:0 22px;
    display:flex;
    font-size: 0.73rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 3px;
    transition-timing-function: 0.6s ease-in-out;
    color:rgb(65, 50, 205);
}
nav ul li a:hover{
background-color: rgb(34, 20, 128);
color:red;
box-shadow: 5px 10px whitesmoke;
}
.main{
    width:100%;
    height:800px;
    position:relative;
    background-repeat: no-repeat;
    background-image: url(images/logo.jpeg);
}
.main-heading{
    width:500px;
    position:absolute;
    left: 60px;
    top:47%;
    transform:translate(-16%,-47%);
}
.main-heading h1{
    font-size: 30px;
    margin: 0.5em;
    letter-spacing: 3px;
    color:#301195;
    text-indent: 0cm;
    padding-right: 3pc;
    text-align: center;
}
.main-heading p{
    color:#e50d0d;
    left: 60px;
}
.main-btn{
    margin-top: 15px;
    width:120px;
    height:40px;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: #ae3208;
    border-radius: 10px;
    text-align: center;
    color:#a13010;
    transition: 0.6s ease-in-out;
}
.main-btn:hover{
    box-shadow: 5px 10px 30px whitesmoke;




.f-img{
    width: 100%;
    height: 100%;
}
.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
