/* FONTS */

@font-face {
    font-family: "ledlight";
    src: url(fonts/LEDLIGHT.ttf);
}

@font-face {
    font-family:"lltw";
    src: url(fonts/lltw.ttf);
}
  
    h2,
    .error h2 {
        font-family: "lltw";
        size: 30px;
        color: #ffffff;
    }
    
    h4 {
        font-family: "lltw";
        color: #ffffff;
        font-size: 20px;
    }

@font-face {
    font-family: "typew";
    src: url(fonts/typew_JMH.ttf);
}

    p {
        font-family: "typew";
        size: 17px;
        color: #ffffff;
    }
    
    p a {
        color: #ffffff;
        text-decoration: none;
    }
    
    p a:hover {
        text-decoration: underline;
    }

/* BODY */

body {
    background-color: #000000;
    }

/* HEADER */

.header {
    height: 150px;
    width: 100%;
    background-image: url("site-header.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    border: #ffffff;
    border-style: solid;
    border-width: 0.5px;
    }

.header h1 {
    font-family: "ledlight";
    font-size: 100px;
    text-align: left;
    padding-left: 5px;
    color: #ffffff;
    }

/* MAIN */

main {
    display: flex;
    flex: row;
    justify-content: space-between;
    padding: 10px;
    }

.main-studio {
    display: flex;
    flex: column;
}

.left-section {
    height: 100%;
    width: 50%;
    padding: 10px;
    bottom: 0;
    top: 350px;
}

    .left-section h3 {
        font-family: "lltw";
        color: #ffffff;
    }
    
    .left-section li a {
        color: #ffffff;
        font-family: "typew";
    }
    
    ul li::marker {
        color: #ffffff;
    }
    
    .about-img-name {
        display: flex;
        padding: 10px;
    }
    
    img {
        border: #ffffff;
        border-style: solid;
        border-width: 0.5px;
    }
    
    .about-name {
        padding-left: 10px;
    }

.mid-section {
    height: 25%;
    width: 50%;
    padding: 10px;
}
    
    .mid-section h3 {
        font-family: "lltw";
        color: #ffffff;
    }
    
    .mid-section h4 {
        font-family: "lltw";
        color: #ffffff;
    }
    
    .updates {
        border-style:solid;
        border: #ffffff;
        border-width: 0.5px;
    }
    
    
.studio-display {
    height: 100%;
    width: 50%;
    padding: 10px;
}

    .mid-sects {
        display: flex;
    }

    .mid-left {
        padding: 10px;
        width: 50%;
    }

    .mid-right {
        padding: 10px;
        width: 50%;
    }
    
    .left-section li a {
        color: #ffffff;
        font-size: 17px;
    }

    .left-section li a:hover {
        color: #ffffff;
    }
    
    .left-section h3 {
        color: #ffffff;
    }

nav {
    
    height: 100%;
    width: 10%;
    padding: 10px;
}

    nav .navi {
        text-align: left;
        position: sticky;
        top: 0;
    }

    nav .navi h3 a {
        display: inline-block;
        font-family: "lltw";
        font-size: 19px;
        color: #ffffff;
        text-decoration: none;
        transition: transform 0.3s ease-in-out;
    }

    nav .navi h3 a:hover {
        color: #ffffff;
        transform: scale(1.15, 1.15);
    }