:root {
    --blue: #77D3FF;
    --yellow: #FFF42C;
    --dark-blue: #218BBE;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Times New Roman';
    background: var(--blue);
}

.homepage {
    background: rgb(17,22,152);
background: -moz-linear-gradient(104deg, rgba(17,22,152,1) 3%, rgba(30,39,255,1) 20%, rgba(184,134,230,1) 48%, rgba(200,30,255,1) 90%);
background: -webkit-linear-gradient(104deg, rgba(17,22,152,1) 3%, rgba(30,39,255,1) 20%, rgba(184,134,230,1) 48%, rgba(200,30,255,1) 90%);
background: linear-gradient(104deg, rgba(17,22,152,1) 3%, rgba(30,39,255,1) 20%, rgba(184,134,230,1) 48%, rgba(200,30,255,1) 90%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111698",endColorstr="#c81eff",GradientType=1);;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.homepage-info {
    padding: 40px 0px 0px 40px;
    color: rgb(255, 255, 255);
}

.homepage-info h1 {
    font-size: 5rem;
}

.homepage-info h2 {
    font-size: 2rem;
}

.homepage-info h3 {
    font-size: 2rem;
    padding: 50px 0px 0px 0px;
}

.project-links {
    list-style: none;
    padding: 40px 0px 0px 40px;
    color: rgb(255, 255, 255);
}

.project-links li {
    padding: 0px 0px 7px 0px;
}

.project-links li a:hover{
    text-decoration: underline;
}

.design-img {
    text-align: center;
}

.design-img img{
    width: 500px;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px 0px 0px;
}

.nav-menu {
    color:  var(--yellow);
    list-style: none;
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.nav-menu li.active {
    color: var(--dark-blue);
}

.my-name {
    color: var(--yellow);
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-name-content {
    text-align: center;
}

.my-name-content h1 {
    font-size: 9rem;
}

.my-name-content  {
    font-size: 3rem;
}

.mylogo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.mylogo img {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inspiration {
    width: 100%;
    height: auto;
    
}

.inspiration-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px 0px 0px;
}

.inspiration-img img{
    width: 900px;
}

.inspiration-info {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--yellow);
}

.inspiration-info h1 {
    font-size: 3rem;
}

.inspiration-info p {
    font-size: 1.5rem;
}

.object-images{
    display: flex;
    align-items: center;
    justify-content: center;
}

.object-images img {
    height: 450px;
    padding: 40px 10px 10px 10px;
}

.object-info {
    text-align: center;
    color: var(--yellow);
}

.object-info h1 {
    font-size: 3rem;
}

.object-info p {
    font-size: 1.5rem;
}