@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

header {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    background: linear-gradient(20deg, #ff50ff, #60ffff);
    padding: 20px 12% 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

nav {
    background: linear-gradient(90deg, #ff50ff, #60ffff);
    padding: 0px 15% 0px;
    display: flex;
    justify-content: left;
    color: #000;
}

nav a {
    position: relative;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    margin: 10px 30px 10px 10px;
    z-index: 1;
    color: #000;
}

nav a::before {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -10px;
    right: -10px;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

nav a:hover::before {
    opacity: 1;
}

nav a:hover {
    color: #000;
    transform: scale(1);
}

.content {
    background: url('background.jpg') no-repeat center center/cover;
    padding: 10px 15% 0px;
    text-align: left;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.content a:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1);
    padding: 6px;
    border-radius: 5px;
    transition: background 0.5s, transform 0.3s;
}

.content p {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    text-align: left;
}

p a {
    color: #000;
    text-decoration: underline;
}

p b {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 20px;
    opacity: 0.9;
    text-align: left;
}

p c {
    font-size: 14px;
}

.custom-padding {
    padding: 10px 12%;
}

.floating-image-right {
    float: right;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 20px;
    width: 300px;
    height: auto;
}

.floating-image-right p {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.9;
    text-align: left;
}

.floating-image-small-right {
    float: right;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 20px;
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .floating-image-right {
        float: none;
        display: block;
        margin: auto;
        width: 100%;
    }
    .floating-image-small-right {
        float: none;
        display: block;
        margin: auto;
        width: 60%;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 6px 12px;
        gap: 6px;
    }
    nav a {
        display: block;
        font-size: 16px;
        margin: 4px 0;
        text-align: center;
    }
    nav a::before {
        top: -2px;
        bottom: -2px;
        left: -5px;
        right: -5px;
    }
    header {
        font-size: 24px;
        padding: 10px 12px;
        text-align: center;
    }
    header h1 {
        font-size: 24px;
        margin-bottom: 2px;
    }
    header p {
        font-size: 14px;
        margin: 2;
    }
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.small-images-container {
    padding: 0px;
    text-align: left;
}

.small-images-line {
    width: 15%;
    vertical-align: middle;
}

footer {
    background: linear-gradient(160deg, #ff50ff, #60ffff);
    padding: 6px;
    margin-top: 0px;
    font-size: 14px;
    position: relative;
    font-weight: 300;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer a:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.1);
    padding: 6px;
    border-radius: 5px;
    transition: background 0.5s, transform 0.3s;
}
