body{
    background-image: linear-gradient( to bottom, rgb(0, 0, 0), rgb(0, 40, 219) );
}

header {
	background: rgb(0, 0, 0);
}

footer {
    background-color: rgb(0, 0, 0);
}

h1{   
    padding-top: 85px;
    color: antiquewhite;
    padding-bottom: 40px;
    font-size: 55px;
    text-align: center;
    font-weight: bold;
}

.logo {
	width: 10%;
	padding: 20px 20px 20px 40px;
}

.logo2 {
    width: 10%;
	padding: 20px 20px 20px 85%;
}

p{
    text-align: left;
    color: antiquewhite;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 25px;
    padding-top: 45px;
    padding-left: 25px;
}

h2{
    text-align: left;
    color: antiquewhite;
    font-size: 30px;
    padding-bottom: 25px;
    padding-top: 25px;
    padding-left: 25px;
}

nav {
	position: absolute;
	top: 90px;
	right: 10%;
}

nav li{
	display: inline-block;
	text-decoration: none;
	font-size: 20px;
}

nav a {
	text-transform: uppercase;
	color: #ffffff;
	font-weight: bold;
	font-size: 25px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
}

nav a:hover{
	text-transform: uppercase;
	color: #6272ff;
	font-weight: bold;
	font-size: 25px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
}

.img{
	width: 40%;
	margin: 20px 20px 40px 30%;
}

ul li{
    text-align: left;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 25px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #000;
    text-decoration: none;
}
.btn::after {
    content: "↑";
    font-size: 32px;
    font-weight: bold;
    color: aliceblue;
    transition: margin-top 250ms;
}
.btn:hover::after {
    margin-top:-16px;
}
