@font-face {
	font-family: 'AmiamieBlack';
	src: url("fonts/Amiamie-BlackRound.ttf") format(truetype)
}
@font-face {
	font-family: 'AmiamieLight';
src: url("fonts/Amiamie-Light.otf") format(opentype)
}

body {
    background-color: white;
    font-family: 'AmiamieLight', sans-serif;
}

.intro {
    margin: 0 20px 0 20px;
}

p {
    font-family: 'AmiamieLight', sans-serif;
    font-size: 28pt;
    line-height: 1.1;
    letter-spacing: -0.05rem;
}

a {
    font-family: 'AmiamieBlack', sans-serif;
    color:black; 
    text-decoration: none;
}

span {
    font-family: 'AmiamieBlack', sans-serif;
    color: rgb(138, 138, 138);
}
span:hover {
    font-family: 'AmiamieBlack', sans-serif;
    color: rgb(0, 0, 0);
}

.carte {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.img_desktop {
    height: 83vh;
    width: auto;
    transform: rotate(3deg);
    transition: 0.5s;
    box-shadow: 5px 5px 15px #c8c8c8;
}

.img_desktop:hover {
    transform: rotate(0deg);
    transition: 0.5s;
    box-shadow: 5px 5px 15px #aaaaaa;
}



@media screen and (max-width: 1200px) {
    .img_desktop {
        height: auto;
        width: 90%;
        margin: 0 5% 0 5%;
        transform: rotate(3deg);
        transition: 0.5s;
        box-shadow: 5px 5px 15px #c8c8c8;
    }

    .img_desktop:hover {
        transform: rotate(3deg);
        transition: 0.5s;
        box-shadow: 5px 5px 15px #aaaaaa;
    }

    p {
        font-size: 36pt;
    }
    }


