*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "cardo",serif;
    background: rgb(255,0,0);
background: linear-gradient(
180deg, 
rgba(255,0,0,1) 0%, 
rgba(177,5,5,1) 52%, 
rgba(152,4,4,1) 89%
);

 background-repeat:no-repeat;
 margin-bottom: 0;
 background-size: cover;
}

#wrapper{
    background-image: url(../Images/always-grey.png);
    height: 1265px;
    padding: 50px 100px;
    text-align: center;
    margin:auto
}

h1 {
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0);
}

h3{
    color: rgb(252, 255, 253);
    font-size: 24px;
    padding-top: 10px;
}

h4{
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-size: 20px;
    padding-bottom: 10px;
}

a:link {
    text-decoration: none;
    color: white;
    line-height: 150%;
}

a:hover{
    color:white;
 font-weight:bold ;
}

a:visited{
    color: rgb(35, 217, 11);
}

footer {
text-align: center;
}

footer a{
    color: white;
}

footer a:visited{
    color:rgb(70, 69, 69)
}

#projects div{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
    margin: auto;
}
.box{
    width: 340px;
    min-width: 350px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 30px 20px;
    border-radius: 20px;
    border:2px solid white;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.contact
{
    background-color: rgba(255, 255, 255, 0.4);
    padding: 5px;
    border: 2px solid white;
    border-radius: 15px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

hr{
    border: 1px solid #c5e0f1;
    margin: top 40px;
    width:80%;
    margin-left: auto;
    margin-right: auto;
}