    body{
        font-family: 'Roboto';
    }

    .loader{
        position: fixed;
	    left: 0px;
	    top: 0px;
	    width: 100%;
	    height: 100%;
	    z-index: 9999;
	    background: url('img/loader.svg') 50% 50% no-repeat rgb(255,255,255);
    }
	
	img{
		width: 200px;
		height: 200px;
		border-radius: 50%;
	}
    
    .content{
        margin-top: 30px;
        text-align: center;
    }
    
    h3{
        font-weight: normal;
    }

    .buttons{
        display: inline-block;
        width: 290px;
    }

    .discord{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
	
	.discord:hover{
		background-color: #5865F2;
	}

    .email{
		background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
	}
	
	.email:hover{
		background-color: #ffc40c;
	}

    .telegram{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
	
	.telegram:hover{
		background-color: #27A7E7;
	}

    .facebook{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
	
	.facebook:hover{
		background-color: #1877F2;
	}

    .instagram{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
    
    .instagram:hover{
        background-color: #E1306C;
    }
    
    .x{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
	
	.x:hover{
		background-color: #000000;
	}
    
    .youtube{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
	
	.youtube:hover{
		background-color: #FF0000;
	}

    .website{
        background-color: gray;
        color: white;
        border-radius: 10px;
        font-size: 21px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: background-color 0.3s;
    }
	
	.website:hover{
		background-color: #FF6600;
	}

    .footer{
        position: absolute;
        width: 100%;
        left: 0;
        height: 60px;
    }
    
    hr{
        border: 1px solid gray;
    }

    p{
        color: gray;
    }