@import url('/css/buttons.css');

* {
    box-sizing: border-box;
}

body {
    background-color: rgb(17, 17, 17);
    color: whitesmoke;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
    overflow-x: hidden;
}

#banner {
    width: 100%;
}

#banner img {
    width: 100%;
}

.warn {
    background: repeating-linear-gradient(
        45deg,
        rgb(17, 17, 17),
        rgb(17, 17, 17) 10px,
        #ffd54d 10px,
        #ffd54d 20px
      );
    padding: 10px 0;
}

.warn div {
    padding: 10px;
    background-color: rgb(73, 61, 21);
    background-color: rgba(73, 61, 21, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 10px #000000;
}

.widesection {
    display: flex;
    width: calc(100% - 20px);
    padding: 0;
    margin: 10px 0;
}

.widesection button {
    width: 100%;
    margin: 0 5px;
}

@media screen and (max-width: 1100px) {
    .widesection {
        flex-direction: column;
        margin: 15px 0;
    }    

    .widesection button {
        width: 100%;
        margin: 5px;
    }
}

.btn {
    --btn-bg-color: rgb(40, 40, 40);
    --btn-accent-color: rgb(255, 255, 255);

    transition-duration: 400ms;
    size: 100%;
    margin: 2px 0;
    padding: 0px;
    border-radius: 0;

    background-color: var(--btn-bg-color);
    color: var(--btn-accent-color);
    border: 2px solid var(--btn-accent-color);
}

.btn:hover {
    transition-duration: 200ms;
    size: 110%;
}

.btnobj {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    position: absolute;
    display: none;
    
}
.btn-sq {
    position: absolute;
    right: 0%;
    top: 0%;
    width: 10px;
    height: 50%;
    background-color: var(--btn-accent-color);
}

.leftbtn {
    margin: 0;
    float: left;
    border-left: 0px;
}
.rightbtn {
    margin: 0;
    float: right;
    border-right: 0px;
}
.btn * {
    margin: 0;
}
.btncontents {
    background-color: rgb(17, 17, 17);
    background-color: rgba(17, 17, 17, 0.95);
    padding: 10px 5px;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.btngreen {
    --btn-accent-color: #4dff4d;
}

.btnred {
    --btn-accent-color: #ff4d4d;
}

.btnyellow {
    --btn-accent-color: #fcff4d;
}

div.fancybr {
    width: 100%;
    height: 5px;
    margin: 0;
    margin-top: 25px;
}


#personalcard {
    background-image: url("/images/pfp.png");
    background-position: center;
    background-clip: border-box;
    background-size: 20cm;
    width: 100%;
}

#personalcard h1 {
    border: 2px dashed white;
    border-left-width: 0;
    border-right-width: 0;

    background: linear-gradient(
        90deg,
        rgba(17, 17, 17, 1) calc(50% - 10cm),
        rgba(17, 17, 17, 0.5) calc(50% - 5cm),
        rgba(17, 17, 17, 0.5) calc(50% + 5cm),
        rgba(17, 17, 17, 1) calc(50% + 10cm)
    );
    height: 100%;
    margin: 0;
    padding: 10px;
}

.centertext {
    width: 100%;
    text-align: center;
}

.glowtext {
    color: rgb(255, 255, 255);
    text-shadow: 0px 0px 15px rgb(255, 255, 255);
}

.sectiontitle {
    /* DO SOMETHING FUNNY HERE */
}

.footer {
    color: gray;
    text-align: center;
}