*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: font;
    font-weight: normal;
    font-style: normal;
    color: silver;
    font-size: 2vh;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}

body{
    background-color: black;
	overscroll-behavior: contain;
	touch-action:none;
	overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
	
}

#canvas{
    position: absolute;
    width: 50vh;
    height: 50vh;
    border-radius: 60%;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    filter:url("#svgBlur");
	touch-action:none;
}

@font-face {
    font-family: font;
    src: url(../resources/fonts/Gidole-Regular.otf);
}  

.description{
    position: absolute; 
    width: 50vh;
    height: 50vh;
    border-radius: 50%;
    top: 45%;
    left: 70%;
	transform:translate(-50%,-50%);
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gif{
    position: absolute;
    top: 10%;
    left: 14.5%;
    width: 40vw;
}

p{
    font-size: 10vh;
    line-height: 10vh;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#logo1{
    width: auto;
    height: 25%;
    top: 80%;
    left: 10%;
    position:absolute;
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#logo2{
    width: auto;
    height: 25%;
    position: absolute;
    top: 80%;
    left: 35%;
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.background{
    position: absolute;
    border-radius: 60%;
    width: 50vh;
    height: 50vh;
    transform: translate(-50%, -50%);
    top: 40%;
    left: 70%;
    background-color: silver;
}

.txt{
	width: 70vw;
	top: 60%;
	position: absolute;
	color: white;
}

.present{
    line-height: 3vh;
    position: relative;
    font-size: 2vh;
    float: left;
    width: 100%;
}

.degree{
    line-height: 12vh;
    width: 100%;
    font-size: 5vh;
    position: relative;
}

@media (orientation: portrait) {
    #canvas{
        width: 80vw;
        height: 80vw;
		border-radius:62%;
		top:77%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter:url("#svgBlur");
    }
    .background{
        width: 80vw;
        height: 80vw;
        transform: translate(-50%, -50%);
        top: 77%;
        left: 50%;
        background-color: silver;
    }
	
	 .txt{
		width: 100vw;
        top: 35%;
		left: 0%;
		position: absolute;
		color: silver;
    }

    .present{
        margin-top: 0;
		line-height: 4vw;
    	font-size: 4vw;
        text-align: center;
        color: silver;
    }
    
    .degree{
        line-height: 12vw;
        font-size: 5vw;
        text-align: center;
    }

    .description{
        width: 80vw;
        height: 80vw;
        top: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .gif{
        width: 100%;
        top: 0%;
        left: 0%;
    }
	
    #logo1{
        width: 20%;
        height: auto;
        top: 85%;
    }

    #logo2{
        width: 20%;
        height: auto;
        top: 85%;
    }

    p{
        line-height: 20vw;
        font-size: 11vw;
    }
  }