@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.topBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: rgba(2, 11, 12, 0.566);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.container {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}
.content {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    max-width: 95%;
}
.logo {
    width: 150px;
    border-radius: 50%;
    margin: auto;
    display: block;
}
.name {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0.75rem;
}
.tagline {
    font-size: 1.25rem;
    margin-top: 0.75rem;
}
.desc {
    font-size: 1rem;
    font-style: italic;
    margin-top: 1.5rem;
    text-align: center;
}
.quotes {
    font-style: italic;
    font-size: 1rem;
    margin-top: 0.75rem;
}
.nav-buttons {
    margin-top: 3.125rem;
    display: flex;
    justify-content: center;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}
.button:hover {
    background-color: #fff;
    color: #000;
}
.social-links {
    margin-top: 3.125rem;
    display: flex;
    justify-content: center;
}
.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 10px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}
.social-links a:hover {
    background-color: #fff;
    color: #000;
}

.bottomBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: rgba(2, 11, 12, 0.566);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}