@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #2e2e2e;
    background: linear-gradient(325deg, rgb(26, 26, 26) 0%, rgb(0, 3, 83) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

nav {
    margin-bottom: 70px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 15px 60px;
    column-gap: 50px;
    row-gap: 20px;
    flex-wrap: wrap;
}

nav div {
    font-size: x-large;
    animation: text-glow 1s linear infinite alternate;
}

nav div a {
    text-decoration: none;
    color: #868686;
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 15px rgb(165, 121, 0);
    }
    to {
        text-shadow: 0 0 15px rgb(114, 114, 114);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul a {
    text-decoration: none;
    color: #868686;
    transition-duration: 1s;
}

nav ul a:hover {
    color: rgb(255, 255, 255);
    text-shadow: 0 0 15px rgb(255, 255, 255);
}

nav li {
    margin-right: 5px;
}

hr {
    margin: 0px 100px;
    border-color: #868686;
    opacity: 0.3;
    width: 100%;
    max-width: 1100px;
}

header {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 70px;
    gap: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

header a {
    text-decoration: none;
}

header button {
    border: 2px solid #2e2e2e;
    width: fit-content;
    background-color: inherit;
    color: white;
    font-weight: bold;
    font-size: x-large;
    border-radius: 10px 15px;
    padding: 10px 15px;
    transition-duration: 0.5s;
}

header button:hover {
    background-color: #2e2e2e;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 50px;
    gap: 40px;
}

main h1 {
    font-size: xx-large;
}

main section {
    flex-wrap: wrap;
    max-width: 1000px;
    display: flex;
    row-gap: 20px;
    column-gap: 40px;
}

main section div {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

main section div h1 {
    font-size: xx-large;
    margin: 0px;
}

main section div p a {
    text-decoration: none;
    color: #868686;
    transition-duration: 1s;
}

main section div p a:hover {
    color: white;
    text-shadow: 0 0 15px rgb(255, 255, 255);
}

main section div .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

main section div button {
    border: 2px solid #2e2e2e;
    width: fit-content;
    background-color: inherit;
    color: white;
    font-weight: bold;
    font-size: medium;
    border-radius: 10px;
    padding: 10px 20px;
    transition-duration: 0.5s;
}

main section div button:hover {
    background-color: #2e2e2e;
}

main section img {
    max-height: 100px;
    border: 2px solid #2e2e2e;
    padding: 15px;
    border-radius: 10px;
    transition-duration: 0.5s;
}

main section img:hover {
    transform: scale(1.1);
    background-color: #2e2e2e;
}

footer {
    margin-top: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    color: #a0a0a0;
    flex-wrap: wrap;
    gap: 20px;
}