@font-face {
    font-family: 'MayinsHandRegular';
    src: url('MayinsHand.woff'), format('woff');
}

@font-face {
    font-family: 'RichEatinAllCaps';
    src: url('RichEatin.woff'), format('woff');
}

@font-face {
    font-family: 'EngineerHandRegular';
    src: url('EngineerHand.woff'), format('woff');
}

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

#nav {
    width: 1200px;
    position: sticky;
    display: flex;
    left: 120px;
    align-items: center;
    font-family: 'MayinsHandRegular';
    font-weight: bolder;
    font-style: normal;
    transition-duration: 0.3s;
}

.navlink {
    display: block;
    float: left;    
    flex-grow: 1;
    text-align: center;
    color: rgb(188, 166, 39);
    text-decoration: none;
    line-height: 22px;
    transition-duration: 0.3s;
}

.navlink:hover {	
    color: #F8C744;
    font-family: 'RichEatinAllCaps';
    font-weight: normal;
    font-style: normal;
    font-size: 20pt;
}

#container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.small-container {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 300px;
}

.container-effects {
    color: white;
    filter: grayscale(100%);
    transition-duration: 0.3s;
}

.container-effects:hover {
    filter: none;
}

.container-effects:hover .small-container-header {
    color: #F8C744;
}

.small-container-img {
    width: 300px;
    margin-bottom: 10px;
}

.small-container-header {
    font-family: 'RichEatinAllCaps';
    font-size: 20pt;
    margin-bottom: 5px;
    color: white;
}

.small-container-text {
    font-family: 'EngineerHandRegular';
    font-size: 16pt;
    color: white;
}

.large-container-text {
    font-family: 'EngineerHandRegular';
    font-size: 16pt;
    color: white;
    line-height: 1.6;
    max-width: 600px;
    width: 100%;
}
