@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

::selection {
    background-color: #4b5f68;
    color: #ffffff;
}
body {
    font-family: "Inter", Verdana, Arial, sans-serif;
    text-align: center;
    background-color: #d6e0e9;
}
a {
    text-decoration: none;
}
.template {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.header {
    background-color: #acb9c5;
}
.main {
    background-color: #98a9b9;
}
.footer {
    background-color: #8e9ba8;
}
.video {
    border: 2px solid #000000;
    border-radius: 7px;
}
.videos {
    background-color: #677786;
    padding: 10px;
    border-radius: 10px;
    color: #ffffff;
}
.link {
    text-decoration: none;
}
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.nav-link {
    color: #264b4b;
    cursor: pointer;
}
#noscript {
    color: #921e1e;
}
.youtube {
    display: inline-block;
    margin-top: 15px;
    background-color: #a55555;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .3s;
}
.youtube:hover {
    background-color: #7c3939;
    transition: background-color .3s;
}