@font-face { font-family: Pricedown; src: url('fonts/pricedown.otf'); }

:root {
    /* fonts */
    --fnt-base: 'Baskerville', serif;
    --fnt-gta: 'Pricedown', serif;

    /* Colors */
    --dark-boi: rgb(20, 20, 20);
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--fnt-base);
    text-align: center;
    color: whitesmoke;
}

body{
    background-image: url("images/mainBG.png");
    text-align: center;
}

p {
    text-align: left;
    text-rendering: optimizeLegibility;
}

#logo-container {
    height: 200px;
    display: flex;
    justify-content: center;
    background: rgb(152,40,40);
    background: radial-gradient(circle, rgba(152,40,40,0) 0%, rgba(0,0,0,1) 120%);
}

#top-nav {
    height: 60px;
    position: sticky;
    margin-bottom: 20px;
    display: flex;
    gap: 60px;
    justify-content: center;
    background-color: var(--dark-boi);
    box-shadow: 0 0 20px gray;
}

.big-link {
    font-family: var(--fnt-gta);
    font-size: 2.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);

    padding-right: 2px;
    -webkit-text-stroke: 1px black;
    transition-duration: 200ms;
}

.big-link:hover {
    color: rgba(255, 255, 255, 0.5);
    transition-duration: 200ms;
}

.content-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}



.content-block {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.137);
    border-radius: 5px;
    width: 60%;
    box-shadow: 0 0 20px var(--dark-boi);
    font-size: 1.2rem;
}

.content-header {
    font-family: var(--fnt-base);
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--dark-boi);
}

.content-main {
    padding: 10px;
}

#big-block {
    flex: 3;
}

#small-block {
    flex: 1;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 2px;
    width: 100%;
    color: white;
    text-align: center;
  }

