@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');            /*NORMAL*/
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@500&display=swap');   /*BOLD*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');    /*LIGHT*/

* {
	margin: 0 auto;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
	max-width: 1920px;
	color: white;
}

body {
	background: linear-gradient(-45deg, #150040, #2d003e, #3f003b, #4d0037, #590633, #631230, #6a1f2d, #702b2b);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    cursor: crosshair;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#top {
    background: linear-gradient(-90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 120%);
    width: 90%;
    min-width: 800px;
    min-height:100%;
    margin: 0 auto;
    animation: fadein 1s;
}

#info {
    display: flex;
    align-items: center;
    padding-bottom: 100px;
    height: 100vh;
}

article {
    width: 70%;
    padding: 60px 40px;
    float: right;
    font-family: 'Montserrat', sans-serif;
    animation: fadein 5s;
}

#info img {
    margin: 60px 0 40px 80px;
    width: 20%;
    display: block;
    float: left;
    animation: fadein 5s;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

article h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    padding: 10px;
}

article h2 {
    font-family: 'Readex Pro', sans-serif;
    font-size: 35px;
    padding: 10px;
}

article p {
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;
    padding: 30px 10px;
}

#violet {
    color: rgb(146, 82, 235);
    font-family: 'Readex Pro', sans-serif;
    font-size: 35px;
}

#info a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #BD98C9;
    padding: 3px;
}

#info a:hover {
    background-color: rgb(146, 82, 235);
    transition: background-color .5s;
    padding: 3px;
    color: white;
}

.clear {
    clear: both;
    height: 0;
}

#courses {
    width: 60%;
    height: 300px;
    float: left;
    padding: 20px;
    background: linear-gradient(90deg, rgba(84,0,255,1) 0%, rgba(84,0,255,.4) 50%, rgba(255,255,255,0) 100%);
    /*background-color: #5400FF;*/
    margin-bottom: 30vh;
}

#courses h3 {
    font-family: 'Readex Pro', sans-serif;
    font-size: 30px;
    padding: 10px;
}

#courses ul {
    width: 600px;
    height: 100px;
    margin: 20px 50px;
    font-size: 19px;
}

#skills {
    width: 60%;
    height: 400px;
    padding: 20px 50px;
    float: right;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(137,0,186,0.4) 50%, rgba(137,0,186,1) 100%);
    /*background-color: #8900BA;*/
    margin-bottom: 30vh;
}

#skills div {
    width: 700px;
    padding-left: 50px;
    float: right;
}

#skills h3 {
    font-family: 'Readex Pro', sans-serif;
    font-size: 30px;
    padding: 10px 450px 10px 10px;
    float: right;
}

#skills div > ul {
    width: 600px;
    height: 300px;
    margin: 20px 50px;
    font-size: 19px;
}

#skills ul ul {
    margin-left: 50px;
}

#contact {
    width: 60%;
    height: 200px;
    margin-bottom: 10vh;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-align: center;
    clear: both;
    /*background-color: #1F00FF;*/
}

#end {
    height: 200px;
    margin-bottom: 5vh;
    text-align: center;
    font-size: 20px;
}

#contact a, #end a {
    text-decoration: none;
    color: rgb(146, 82, 235);
    padding: 3px;
}

#contact a:hover, #end a:hover {
    background-color: rgb(146, 82, 235);
    transition: background-color .5s;
    color: white;
}

footer {
    font-family: Courier;
    text-align: center;
    clear: both;
}