* {
    box-sizing: border-box;
    overflow: hidden;
}



body {
    font-family: Quicksand, sans-serif;
    font-size: 15px;
    padding:0;
    margin:0;
    height: 100vh;
    width: 100vw;
    cursor: Default;
    overflow: hidden !important;
}





a {
    color: black;
    text-decoration: none;
    cursor: Pointer;
}



.cont {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 85vh;
    width: 100vw;
}



@media (orientation: landscape) {

    .title {
        font-size: 8vw;
        font-weight: 500;
        width: 100vw;
        top: 20vh;
        text-align: center;
    }



    .info {
        display: flex;
        flex-direction: row;
        font-size: 2.5vw;
        text-align: center;
        font-weight: normal;
        justify-content: space-evenly;
        align-items: center;
    }

    .line {
        display: flex;
        flex-direction:column;
        justify-content: space-evenly;
        align-items: center;
    }

    .br {
        width: 2vw;
        display: inline-block;
    }

	.note {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: center;
		text-align: center;
		line-height: 1.4;
		font-size: 2vw;
	}

}

@media (orientation: portrait) {

    .title {
        font-size: 6vh;
        font-weight: 500;
        text-align: center;
    }



    .info {
        display: flex;
        flex-direction: column;
        font-size: 3vh;
        text-align: center;
        font-weight: normal;
        line-height: 1.3;
        justify-content: space-evenly;
        align-items: center;
    }

    .line {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }

    .line div {
        padding: 1vh 2vw 1vh 2vw;
    }

    .br {
       width: 4vw;
       display: inline-block;
    }

	.note {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		text-align: center;
		font-size: 2.4vh;
	}

}

.gr {
	color: seagreen;
}	



@media (hover:hover) {

    a:hover {
        color: seagreen;
        text-decoration: underline;
    }
	.clickable:hover {
        color: seagreen;
        text-decoration: underline;
		cursor: pointer;
	}

}

.hidden {
	visibility: hidden;
}