﻿html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(232 232 232);
    color: whitesmoke;
    font-family: Cambria;
    font-size: 20px;
    background-attachment: fixed;
    background-image: url('/img/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    cursor: default;
}

.title-container {
    margin-top: 25vh;
    margin-left: 5vw;
}

.title {
    font-variant: small-caps;
    font-size: 80px;
    margin-bottom: 0;
    color: rgba(220, 220, 255, 0.8);
}

    .title > span {
        font-weight: bold;
        text-shadow: 1px 1px 1px black;
        color: rgba(18, 197, 255, 0.8);
        -webkit-animation: glow 1s ease-in-out infinite alternate;
        -moz-animation: glow 1s ease-in-out infinite alternate;
        animation: glow 1s ease-in-out infinite alternate;
    }
@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0044e6, 0 0 20px #0044e6;
    }

    to {
        text-shadow: 0 0 10px #fff, 0 0 15px #0092e6, 0 0 20px #0092e6, 0 0 25px #0092e6;
    }
}

.desc {
    text-shadow: 2px 2px 2px black;
    color: rgb(65 166 251 / 0.80);
    margin-top: 0;
    font-family: 'Courier New';
    font-size: 30px;
}

.menu {
    margin-top: 100px;
    margin-left: 5vw;
}
    .menu > a.option {
        text-decoration: none;
        font-variant: small-caps;
        font-size: 30px;
        padding: 10px;
        color: rgba(220, 220, 255, 0.8);
        margin-right: 20px;
    }
        .menu > a.option:hover {
            background-color: rgb(65 166 251 / 0.25);
        }

.content {
    flex: 1 0 auto;
    padding-top: 800px;
    min-height: calc(100vh - 200px);
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

section {
    min-height: 100vh;
    margin-left: 10vw;
    overflow: auto;
    scroll-snap-align: start;
}

.section-title {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    width: min-content;
    font-size: 40px;
    font-variant: small-caps;
    margin-top: 30vh;
    transition: all 0.2s ease;
}
.section-title:before{
    margin-top: 25vh;
    content: '';
}
    .section-title:hover {
        color: rgb(57 255 243);
    }

footer {
    flex-shrink: 0;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.75);
    margin: 0;
    line-height: 80px;
    padding-left: 10px;
}

ul {
    font-size: 24px;
    margin-left: 15px;
    transition: all 0.2s ease;
}

    ul > li {
        line-height: 46px;
        transition: all 0.2s ease;
    }

    ul > li:hover {
        color: rgb(57 255 243);
        padding-left: 10px;
    }

p {
    margin-left: 15px;
    font-size: 24px;
}

a {
    color: rgb(234 180 4);
}
    a:visited {
        color: rgb(234 103 4);
    }

    a:hover {
        color: rgb(211 234 4);
    }
    a:active {
        color: rgb(20 234 4);
    }