html{
    scroll-behavior: smooth;
}

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

header{
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-header.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

header h1{
    margin-top: 0;
    width: 100%;
    text-align: center;
    margin-top: -50px;
}

.title{
    width: 90%;
    max-width: 700px;
}

.links{
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    background-color: #b7e0f7;
    font-family: 'Roboto', sans-serif;
    color: #0051a0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

.links:hover{
    background-color: #ffda01;
}

.actions{
    margin-top: 20px;
}

.documents{
    padding: 100px 0;
    background-color: #b7e0f7;
    display: flex;
    justify-content: center;
    align-items: top;
}

.item{
    width: 90%;
    max-width: 200px;
    padding: 15px;
}

.item:hover{
    background-color: #aad2e8;
}

.item p{
    font-size: 16px;
    color: #0052a0;
}

.item a{
    text-decoration: none;
}

.item img{
    width: 100%;
    -webkit-box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.66); 
box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.66);
}

@media (max-width: 600px) {
    .documents{
        display: block;
    }

    .item{
        width: 90%;
        max-width: 90%;
        padding: 15px;
    }

    .links{
        display: block;
        margin-bottom: 20px;
    }
  }