/*
   ____                               ____             _       _ 
  / ___| __ _ _ __ ___  _   ___  __  / ___|  ___   ___(_) __ _| |
 | |  _ / _` | '__/ _ \| | | \ \/ /  \___ \ / _ \ / __| |/ _` | |
 | |_| | (_| | | | (_) | |_| |>  <    ___) | (_) | (__| | (_| | |
  \____|\__,_|_|  \___/ \__,_/_/\_\  |____/ \___/ \___|_|\__,_|_|

 => Made by V / Lou du Poitou, (c) 2024 - 2025
 => http://loudupoitou.dns-dynamic.net
*/

* {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

body {
    display: grid;
    min-width: 370px;
}

img {
    pointer-events: none;
}

p, h2 {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    margin: 15px;
}

p {
    font-size: 1.2rem;
    font-weight: 500;
}

p a {
    color: blue;
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}

p a:hover {
    text-decoration: underline;
}

h2 {
    font-size: 1.8rem;
    font-style: italic;
}

header {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    position: relative;
    background-color: whitesmoke;
    max-height: 103px;
}

#icon {
    width: 65px;
    height: 65px;
}

#title {
    margin: 15px;
    font-style: italic;
    font-size: 2rem;
    color: black;
}

#open {
    border-radius: 25px;
    padding: 12px;
    color: whitesmoke;
    background-color: lime;
    box-shadow: 0 0 3px 0 lightgray;
    font-weight: bold;
    position: absolute;
    right: 0;
    margin: 18px;
}

#open:hover {
    scale: 1.01;
}

#open:active {
    text-decoration: underline;
}

main {
    background: url("./img/GarouxBackground.png") center/cover;
    display: grid;
    min-height: calc(100vh - 103px);
}

section {
    display: flex;
    padding: 45px;
    margin: 20px;
    border-radius: 25px;
    max-width: 810px;
    place-self: center;
    background-color: #ffffff5f;
}

section img {
    width: 100%;
    object-fit: contain;
    place-self: center;
    filter: drop-shadow(0 0 5px black);
}

footer {
    place-self: center;
    font-weight: bolder;
    font-style: italic;
    margin: 0 15px 15px 15px;
}

@media screen and (max-width: 755px) {
    section {
        display: block;
    }
}

@media screen and (max-width: 500px) {
    #icon {
        width: 45px;
        height: 45px;
    }

    #title {
        font-size: 1.2rem;
    }
}

/* Made by V / Lou du Poitou, (c) 2024 - 2025, http://loudupoitou.dns-dynamic.net */
