body{
    background-color: #1064be; 
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: #2e2e2e;  
    display: flex; 
    flex-direction: column;
}

h2{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    padding-left: 10px; 
    padding-right: 10px;
    letter-spacing: 1px;
}

a{
    text-decoration: none;
    color: #2e2e2e;     
}

.header-logo{
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.header-logo a img{
    height: 100px; 
}

.link-icon img{
    height: 30px;
}

.link-container{
    flex: 1; 
}

.link{
    margin: 0 auto;
    margin-top: 20px;
    display: flex; 
    max-width: 80%; 
    height: 80px; 
    justify-content: space-between;
    

    display: flex; 
    align-items: center; 
    padding-left: 10px; 
    padding-right: 10px; 

    background-color: #ffffff; 
    border-radius: 10px;
    box-shadow: 0px 18px 40px -12px rgba(0,0,0,0.35);

    transition: all 200ms ease-in-out; 
}

.link-img{
    height: 60px;
}

.link-img img{
    height: 60px; 
    border-radius: 10px;
}

.link-title{
    flex: 1;
}

.link:hover{
    background-color: #f0f0f0; 
    cursor: pointer;
}

footer p{
    color: #ffffff;
    text-align: center; 
    font-weight: 100; 
}