body {
    font-family: "JetBrains Mono";
    background-color: black;

}
header {
    display: flex;
    justify-content: center;
    background-image: url(img/header_background.png);
    background-repeat: no-repeat;
    margin-top: 2%;
    background-size: contain;
    text-align: center;
}

.logo {
    display: flex;
    justify-content: center;
    margin-top: -5%;
}
.left-menu {
    width: 30%;
    display: flex;
    justify-content: space-around;
    font-size: 25px;
    margin-top: 2%;
    margin-left: -2%;
}
.left-menu a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.left-menu :hover {
    color: #DE0FDE;
    transition: 1s;
}
.right-menu {
    width: 30%;
    display: flex;
    justify-content: space-around;
    font-size: 25px;
    margin-top: 2%;
}
.right-menu a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.right-menu :hover {
    color: #DE0FDE;
    transition: 1s;
}
.main_page {
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
}
.main_page_inside{
    display: flex;
    justify-content: center;
}
.main_page_inside img {
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 100px #DE0FDE);
}
#img-1 {
    height: 55%;
    position: fixed;
    margin-top: 2%;
}
#img-2 {
    margin-top: 13%;
    position: fixed;
}
.main_page p {
    margin-left: 23%;
    margin-top: 37%;
    position: relative;
    font-family: "JetBrains Mono", Bold Italic;
    font-style: italic;
    font-weight: bold;
    font-size: 28px;
    color: black;
    width: 900px;
}
.button {
    display: flex;
    justify-content: center;
    margin-top: 3%;
    position: relative;
}
.button a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}
button {
    background-color: rgb(255, 255, 255, 0.1);
    border: 3px solid rgb(195, 9, 219);
    padding: 0.5% 4%;
    border-radius: 25px;
    cursor: pointer;
    font-family: "JetBrains Mono";
    font-size: 24px;
    color: rgb(255, 255, 255);
}
