html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
	transition: all 0.3s ease-in-out;
}

.page-white {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    height: 100vh;
    padding: 10px;
    overflow: hidden;
    transform: translateY();
}

.page-black {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    height: 100vh;
}

.footer {
    background-color: #3d3d3d;
    color: #ffffff;
    width: 100%;
    height: 2vh;
    position: relative;
    padding: 10px;
	text-align: center;
}

#site-header {
    text-align: center;
    position: relative;
}

#name {
    font-size: 90pt;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 100pt;
    border-right: 2px solid #ffffff;
    overflow: hidden;
    width: 0;
    white-space: nowrap;
    animation: write 4s steps(35) forwards, blink 0.5s step-end infinite alternate;
}

@keyframes write {
    to {
        width: 30ch;
    }
  }
  
@keyframes blink {
    50% {
        border-color: transparent;
    }
  }

#arrow_down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
	transition: all 0.3s ease-in-out;
}

@keyframes bounce {
    0% {
        bottom: 50px;
    }

    50% {
        bottom: 60px;
    }

    100% {
        bottom: 50px;
    }
}

#head-text {
    font-size: 50pt;
}

#big-text {
    font-size: 30pt;
}

#text {
    font-size: 20pt;
}

.text {
    font-family: Arial, Helvetica, sans-serif;
}

#about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    gap: 50px;
    flex-wrap: wrap;
}

#projects {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    gap: 50px;
    flex-wrap: wrap;
}

.center-text-left {
    width: 45%;
    position: static;
}

.center-img-right {
    width: 45%;
    height: auto;
    position: static;
    margin-right: 50px;
}

.center-text-right {
    width: 45%;
    position: static;
}

.center-img-left {
    width: 45%;
    height: auto;
    position: static;
    margin-right: 50px;
}

.load {
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
    padding: 10px;
    overflow: hidden;
    transform: translateY();
    z-index: 9998;
    position: fixed;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#load {
    border: 5px solid #000000;
    width: 35px;
    height: 35px;
    z-index: 9999;
    border-top-color: #ffffff;
    border-radius: 100px;
    animation: load 1s ease-in-out infinite;
}

@keyframes load {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a {
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    font-size: 16pt;
    color: #ffffff;
}

.footer a {
    font-size: 10pt;
    font-family: Arial, Helvetica, sans-serif;
}

.footer span {
    font-family: Arial, Helvetica, sans-serif;
}
