body {
    background-color: rgb(231, 220, 203);
}

.body {
    max-width: 100%;
    overflow-x:hidden;
    min-height: 97vh;
    margin: 0px;
    border: 3px solid black;
    border-radius: 50px;
    background: linear-gradient(360deg,  rgb(254, 246, 229), rgb(254, 246, 229), rgb(254, 246, 229), rgb(243, 194, 147));
	background-size: 400% 400%;
	/* animation: gradient 30s ease infinite;
    animation-fill-mode: forwards; */
}

/* @keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */

.row {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-flow: row wrap;
}

#museum:hover {
   transform: scale(1.2);
}
#museum:active {
    transform: scale(.8);
 }

.header-container {
    position: sticky;
    top: 0;
    z-index: 9;
}


.site-header-column {
    flex: 10 0 100%;
    /* important */
}

.site-header-container {
    padding: 3em 3em 3em;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-container {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    flex-flow: rowwrap;
    justify-content: center;
}

.statementContainer {
    
    margin-top: 3vh;
    margin-bottom: 30px;
    font-size: 2.7vw;
    font-weight: 100;
    flex-flow: nowrap;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    /* Keeps the content on a single line */
    justify-content: center;
    text-align: center;
}

#cursor {
    font-weight: 100;
}







.computer-elements {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;

}
.computer-elements-left {
    display: flex;
}
.computer-elements-right {
    display: flex;

}
.OldMac {
    width: 176px;
    height: 125px;
    border-radius: 6px; 
    position: absolute; 
    left:101px; 
    top:27px;
    transform: scale(0);
}
@keyframes wipe-enter {
    0% {
        transform: scale(0, .025);
        
	}
	50% {
        transform: scale(1, .025);
	}
    100% {
        transform: scale(1.01, 1.01);
    }
}
.wipeEnter {
    animation: wipe-enter 1s .3s;
    animation-fill-mode: forwards;
}
.MacToday {
    position: absolute; 
    width: 290px; 
    vertical-align: text-top; 
    margin-left: 4vw; 
    left: 44px; 
    top: 25px;
    opacity: 0;
}
.fadeIn {
   transition: opacity .3s .9s;
   opacity: 1;
}

.pitch{
    margin: 10px 16vw;
    font-size: 1.3vw;
    line-height: 35px;

}


.emailLink:hover {
    border-bottom: 1px solid grey;
    transition: all 1s;
}

.email-form{
    height: 3rem;
    width: 20rem;
    background-color: #bdb3a279;
    border: 1px solid #4b4b4b;
    border-radius: 6px;
    font-size: large;
    padding-left: 1rem;
    transition: all 1s;
    outline: none;
}

.email-form:hover {
    background: linear-gradient(-45deg, #e64f211a, #d1c73734);

}

.download{
    background-color: beige; 
    padding: 3px 5px; 
    margin: 0 2px; 
    border-radius: 4px; 
    user-select: none;
}
.download:hover {
    background-color: rgba(117, 27, 11, 0.842);
    transition: all .5s;
    cursor: pointer;
}

.submit-button {
    position: relative;
    margin-left: 2rem; 
    height: 3rem;
    width: 3rem;
    transition: all .3s;
}

.submit-button:hover {
    transform: scale(.95);
    transition: all .3s;
}



.sendAnim {
    animation: send 1s ease-in-out forwards;
}
.sendBox {
    animation: sendBox 1.4s ease-in-out forwards;
    }
@keyframes send {
    0% {
        transform: rotate(0deg);
    }
    30% {
        transform: rotate(45deg);
    }
    100% {
        transform: translateX(55vw) rotate(45deg);
    }
}
@keyframes sendBox {
    0% {
        transform: translateX(0vw);
    }
    30% {
        transform: translateX(0vw);
    }
    100% {
        transform: translateX(65vw) ;
    }
}