*{
    margin: 0;
    padding: 0;
    font-family:  'Poppins', sans-serif;;
    box-sizing: border-box;
    
}

a{
    text-decoration: none;
    color: aqua;
}
ul{
    list-style: none;

}

body{
    margin: 0px;
    padding: 0px;
    font-family:  'Poppins', sans-serif;
}
.showcase{
    width: 100%;
    height: 107vh;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("./images/download3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    
}
.title{
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title .name{
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

}

.title ul li{
    font-size: 15px;
    padding: 10px;
    display: flex;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    border: 7px solid #0041a3;
    background-color: #0041a3;
    border-radius: 40%;
    
}
.title ul li a{
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.title ul li:hover{
    border: 7px solid #000;
    background-color: #000;
    border-radius: 40%;

}
#contact{
    width: 100%;
    height: 35%;
    background-color: rgba(0,0,0,0.6);
    position: relative;
    top: 50vh;
    display: flex;

}
#contact p{
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: grey;
    margin-left: 10px;
    margin-top: 25px;
}
