@import url('https://fonts.googleapis.com/css?family=Noto%20Serif&display=swap');

@keyframes headerHighlightIn {
    0% {
        background-color: transparent;
        text-decoration: underline 0px;
    }

    100% {
        background-color: rgb(0, 0, 0);
        text-decoration: underline 2px;
    }
}
@keyframes headerHighlightOut {
    0% {
        background-color: rgb(0, 0, 0);
        text-decoration: underline 2px;
    }
    50% {
        text-decoration: underline 4px;
    }
    100% {
        background-color: transparent;
        text-decoration: none;
    }
    
}

body {
    background-color:rgb(255, 255, 255);
    margin:0px;
}

.header {
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 30;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.65);
    color: rgb(255, 255, 255);
    padding: 10px;
    padding-left:20px;
    width: 100%;
    border: solid 2px rgb(255, 255, 255);
    border-top:0px;
    
    border-bottom-left-radius: 30px;

    z-index: 999999;
    
}

.menuItem {
    display: inline;
    color: rgb(255, 255, 255);
    a {
        color: rgb(255, 255, 255);
        text-decoration: none;
    }
}
.menuItem:hover {
    animation-name: headerHighlightIn;
    animation-duration: 0.25s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
.menuItem:not(:hover) {
    animation-name: headerHighlightOut;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
.mainText {
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    padding:30px;
}
h1 {
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
}
p {
     font-family: 'Noto Serif';
    font-style: normal;
}

a {
    color: black;
}

.openingText {
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;

    position: absolute;
    z-index: 0;
    color: rgb(224, 224, 226);
    background-color: rgba(0, 0, 0, 0.6);
    width:50%;
    transform: translate(0, 0);
    border: solid 2px white;
    padding:30px;
    border-radius: 40px;
    margin-left:50px;
}
.hi {
    font-size: 50px;
}
.banner {
    width:100%;
    position: absolute;
}
.bufferBox {
    aspect-ratio: 16/9;
    width:20%;
}

.start {
    width: 100%;
}
.content {
    
}
.bodyParagraph {
    margin:100px;
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;  
    font-size:20px;
}
.portraitSection {
    /* background: linear-gradient(45deg, white, rgb(255, 192, 75)); */
    display: flex;
    .text {
        flex-direction: column;
        font-size: 20px;
        width:40%;
        
    }
}
.portrait {
    height:600px;
    width:500px;
    object-fit:cover;
    margin: 30px;
    border: dashed 15px rgb(255, 145, 0) ;
    border-radius: 60px;
}

.textAndImage {
    display: flex;
    align-items: center;
    .text {
        flex-direction: column;
        font-size: 20px;
        width:40%;
        
    }
}
.neuralNet {
    aspect-ratio: 6/4;
    height:350px;
    border: dashed 15px rgb(255, 165, 255) ;
    border-radius: 300px;
    background-color: rgb(255, 255, 255);
}
.aiParagraph {
width:50%;
}


.bufferBelowVideo {
    width:70%;
    aspect-ratio: 16/9;
}

.gradient1 {
    padding:40px;
    background-image:linear-gradient(to top right, rgb(177, 164, 255), white);
    border-radius: 40px;
}
.gradient2 {
    padding:40px;
    background-image:linear-gradient(to bottom right, rgb(255, 205, 164), white);
    border-radius: 40px;
}
.gradient3 {
    padding:40px;
    background-image:linear-gradient(to top right, rgb(221, 156, 212), white);
    border-radius: 40px;
}

.gradient4 {
    padding:40px;
    background-image:linear-gradient(to top right, rgb(255, 198, 198), white);
    border-radius: 40px;
}
.gradient5 {
    padding:40px;
    background-image:linear-gradient(to bottom right, rgb(118, 196, 143), white);
    border-radius: 40px;
}


.projectText {
    width:50%;
    h1 {
        text-align: center;
    }
    h2 {
        font-size:25px;
    }
}
.projectImage {
    width:20%;
    margin:50px;
    border: dashed 15px rgb(255, 153, 0) ;
    border-radius: 40px;
}


.footer {
    font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;

    padding: 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.65);
    color: rgb(255, 255, 255);
    border: solid 2px rgb(255, 255, 255);
    border-bottom: 0px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.copyright {
    font-size:15px;
}
