body#page-portail {
	height: 100%;
	min-height:100vh;
	font-size: 17px;
	line-height: 1.7;
	color: #858585;
	position:relative;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	background-color: #eeeeee;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
body#page-portail footer {
	margin-top: auto;
    width: 100%;
}

body#page-portail #logo {
	max-width: 360px;
    margin-bottom: 4em;
}

#portail{
    height: 80vh;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    padding: 60px;
}
#portail-container h1{
    margin-bottom: 2em;
}

#blocks{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.block{
    width:500px;
    height:500px;
    background-color: white;
    color: white;
    border-radius:16px;    
    box-shadow: 0 3px 6px rgb(0 0 0 / 25%);
    display: inline-block;
    overflow: hidden;
    transition:all 0.3s;
}
a.block, a.block:link, a.block:visited, a.block:focus, a.block:active, a.block:hover{
	color: #fff;
}
a.block:hover{
	color: #fff;
    text-shadow: 0 0px 3px rgb(0 0 0 / 60%);
}
.block:hover{
	box-shadow: 0 3px 24px rgb(0 0 0 / 50%);
}

.portail-logo{
    background-image:url("../img/logo-nostars.svg");
	background-position: 50% 50%;
    background-size: 68%;
	background-repeat:no-repeat;
	background-color:white;
    width: 100%;
    height:0;
    padding-bottom: 20%;
    margin:7.5% 0;
}
#droite-logo{background-image:url("../img/logo-appart-nostars.svg");}

.portail-image img{
    width: 100%;
    display: block;
}

#gauche-image{border-top:12px solid #676767;}
#droite-image{border-top:12px solid#676767;}

#milieu{
    height:500px;
    width:96px;
    background-image:url("../img/milieu.svg");
	background-position: 50% 50%;
	background-size:auto 174px;
	background-repeat:no-repeat;
}

.txt{
    background-color: #676767;
    height: 0;
    width: 100%;
    text-transform: uppercase;
    font-size: 130%;
    line-height: 1.1;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding:10.5% 2em;
}
#droite-txt{background-color: #676767;}

@media (max-width: 767px) {

    #portail-container h1 {
       font-size: 120%;
       letter-spacing: 2px;
    }

    #portail{
        min-height: 100vh;
        height: auto;
        padding: 30px;
    }

    #blocks {
        flex-direction: column;
    }
    .block{
        height: 0;
        width: 100%;
        padding-bottom: 110%;
    }
    #milieu{
        display: none;
    }
    #gauche{
        margin-bottom: 24px;
    }
    .txt{
        font-size: 100%;
        padding: 15% 2em;
    }
}