body {
    background-image: url('/assets/img/bg.png');
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%; 
    margin: 15px;
    gap: 25px;
}

.bottom {
    display: flex;
    gap: 25px;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 20px;
}

#bottom-link {
    font-size: 15px;
    text-decoration: none;
    background-color: #333;
    padding: 10px;
}

#bottom-link:hover {
    background-color: #111;
}

.image-container { 
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
} 

.title {
    font-size: 100px;
    color:white;
    text-align: center;
}

.words {
    font-size: 25px;
    color:white;
    text-align: center;
}

#youtube {
    margin:auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    display: flex;
    align-items: center;
}

nav li {
    float: left;
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover {
    background-color: #111;
}

nav li a.active {
    background-color: blue;
    color: white;
}