@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');

body{
    background-color: rgb(66, 66, 66);
    margin: 0;
    padding: 0;
}

#arrowBack{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 60px;
    color: rgb(231, 231, 231);
}

#arrowBack:hover{
    animation: hithere 0.6s ease;
}

@keyframes hithere {
	30% {
		transform: scale(1.2);
	}
	40%,
	60% {
		transform: rotate(-20deg) scale(1.2);
	}
	50% {
		transform: rotate(20deg) scale(1.2);
	}
	70% {
		transform: rotate(0deg) scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

.footer{
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #252525;
    border: 0px solid rgb(0, 0, 0);
    color: rgb(233, 233, 233);
    margin: 0;
}

.page{
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.main{
    background: linear-gradient(rgba(92, 183, 104, 0.534), rgba(92, 183, 104, 0.534)), url(./bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position-y: -120px;
    height: 600px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.main h1{
    padding-top: 150px;
    padding-left: 50px;
    font-size: 70px;
    font-family: 'Bebas Neue', cursive;
    color: white;
    margin: 0;
}

.page h1{
    font-size: 60px;
    font-family: 'Bebas Neue', cursive;
    color: rgb(92, 183, 104);
}

.page h2{
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', cursive;
    color: rgb(92, 183, 104);
}

.page h3{
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    color: rgb(150, 150, 150);
    margin-top: -50px;
}

.content{
    color: #cbcbcb;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
    background-color: #3a3a3a;
}

.content i{
    text-align: center;
    width: 170px;
    font-size: 130px;
    margin-right: 20px;
}

.content p{
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 25px;
    font-family: 'Bebas Neue', cursive;
}

.content2{
    color: #cbcbcb;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
}

.content2 i{
    font-size: 130px;
    margin-right: 20px;
}

.content2 p{
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

@media only screen and (max-width: 450px){
    .content p{
        font-size: 20px;
    }

    .content2 p{
        font-size: 20px;
    }

    .content i{
        font-size: 80px;
        width: 100px;
    }

    .page h2{
        font-size: 30px;
    }

    .page h3{
        font-size: 25px;
    }
}

.info p{
    color: rgb(103, 199, 74);
    font-size: 25px;
    font-family: 'Bebas Neue', cursive;
}

.info a{
    color: rgb(103, 199, 74);
    text-decoration: underline;
}

a:visited { text-decoration: none; color: rgb(103, 199, 74);}

a:hover { text-decoration: none; color: rgb(126, 213, 86); }

a:active { text-decoration: none; color: rgb(103, 199, 74);}

body::-webkit-scrollbar {
    width: 10px;
}
  
body::-webkit-scrollbar {
    width: 7px; 
    height: 7px;
}

body::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0);
}
  
body::-webkit-scrollbar-track {
    background: none 
}
  
body::-webkit-scrollbar-thumb {
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
}