* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue LT Pro', sans-serif;

}

header {
    height: 5vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: black;
}

.logo {
    height: 50%;
}

#portfolio {
    width: 100%;
}

h1 {
    font-size: 20pt;
    font-weight: 100;
    text-align: center;
    padding-top: 150px;
    padding-bottom: 150px;
}

#picto {
    display: flex;
    justify-content: center;
    padding-bottom: 200px;

}

.position_picto {
    display: flex;
    justify-content: center;
}

.picto {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    -webkit-animation: spin 2s ease-in-out infinite;
    -moz-animation: spin 2s ease-in-out infinite;
    animation: spin 2s ease-in-out infinite;
}

.text {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: #f0f0f0;
    box-shadow: 5px 5px 15px #555555;
}

.mail{
    font-weight: bold;
    color: black;
    padding-top: 5px;
}

footer {
    background-color: black;
    height: 5vh;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy{
    color: white;
    font-size: 8pt;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(720deg);
    }
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(720deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(720deg);
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        padding-top: 50px;
        padding-bottom: 100px;
        font-size: 14pt;
    }
    
    #picto{
        padding-bottom: 80px;
    }
    
    .picto{
        width: 20%;
    }
    
    .text{
        padding: 35px 0 35px 0;
    }
    
    p, a{
        font-size: 8pt;
    }
    
    .mail{
        font-size: 10pt;
    }
}
