@font-face {
    font-family: 'Odin';
    src: url('fonts/odinRounded.ttf') format('truetype');
}

@font-face {
    font-family: 'Rajdhani';
    src: url('fonts/rajdhani.ttf') format('truetype');
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani';
    color: white;
    padding-top: 30px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom,rgb(70, 21, 150) 0%,rgb(68, 31, 85) calc(100% - 3px),white 100%);
    padding-top: 3px;
    padding-bottom: 5px;
    text-align: center;
}

.aleHeader {
    position: relative;
    color: white;
    text-decoration: none;
    margin: 0 3.5%;
    font-size: 20px;
    vertical-align: center;
}

.feature::before {
    content: '- ';
}

.feature {
    font-size: 25px;
    padding: 0 15px;
    color: rgb(217, 255, 237);
}

.icon {
    height: 1.5em;
    vertical-align: middle;
    margin-right: 2%;
}

.background {
    position: fixed;
    background: linear-gradient(to bottom, #162532, rgb(64, 32, 65));
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.title {
    font-family: 'Odin';
    font-size: 70px;
    text-align: center;
    background: rgba(155, 25, 255, 0.538);
    display: fixed;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 15px;
}

.subtitle {
    font-size: 40px;
    text-align: center;
    background: rgba(255, 25, 197, 0.178);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    height: 50px;
}

.text {
    font-size: 22.5px;
    margin: 0 20px;
}

.text blu {
    color: aqua;
}

.text mag {
    color: rgb(255, 129, 255);
}

#mod-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
    justify-content: center;
}

.mod {
    background-color: black;
    align-items: center;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    width: 47.5%
}

.mod img {
    width: 100%;
    border-radius: 10px;
}

.mod .text {
    padding-left: 10px;
    color: white;
}

.mod .name {
    font-size: 25px;
    margin: 0 -20px;
}

.mod .description {
    font-size: 22px;
    margin: 0 -20px;
    color: rgba(255, 255, 255, 0.75);
}

.mod .link {
    font-size: 18px;
    margin: 0 -22px;
}

.mod a {
    color: rgb(210, 0, 210);
}