*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto' , sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgb(233, 221, 207,0.7),rgba(116, 50, 53, 0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

.navbar{
    height: 12%;
    display: flex;
    align-items: center;
}

.logo{
    width: 50px;
    cursor: pointer;
}

nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 80px;   
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

nav ul li a button{
    display: inline-block;
    width: 180px;
    height:auto;
    color: #000;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    padding: 12px 0;
    background: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 50 px;
    transition: transform 0.5s;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px #999;
}
  
button:active {
    background-color: #a07f88;
    box-shadow: 0 4px #666;
    transform: translateY(4px);
  }
nav ul li a button:hover{
    background-color: #a07f88; 
    color: white;
}


h1{
    color: #fff;
    font-size: 100px;
}

p{
    color: #fff;
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 20px;
}

.card{
    display: flex;
    height:auto;
    align-items: center;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-image: url(images/project1.png);
    background-position: center;
    background-size: cover;
    transition: transform 0.5s;
}


.card:hover{
    transform: translateY(-10px);
}

h5{
    color: #fff;
    text-shadow: 0 0 5px #999;
}

.card p{
    text-shadow: 0 0 15px #000;
    font-size: 8px;
}