@font-face{
    font-family: montserrat;
    src: '../font/montserrat.otf'
}

*{
    box-sizing: border-box;
    font-family: montserrat;
    text-align: justify;
    margin: 0;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #13212E;
    color: white;

    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.app{
    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 200px;
    min-height: 200px;

    margin: 5vmin;

    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);

    background-color: #607D8B;
    color: black;

    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.app:hover{
    transform: scale(1.05);
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.app.web{
    background-color: black;
    color: white;
}

.app.cloud{
    background-color:#0082c9;
    color: white;
}

.app.mail{
    background-color: #BFD800;
    color: black;
}

.app.face{
    background-color: #3b5998;
    color: white;
}

.app.insta{
    background-color: #E1306C;
    color: black;
}

a{
    text-decoration: none;
    color: white;
}

@media (max-width: 480px){
    header > h1{
        font-size: 6vw;
    }

    .app{
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
    
        width: 30vmin;
        height: 30vmin;

        min-width: 140px;
        min-height: 140px;
    
        margin: 5vmin;
    }
}