
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    #newWinBtn{position:absolute;right:12px;top:12px;padding:6px 10px;border:2px outset var(--bevel-light);background:var(--panel);cursor:pointer}
}

body {
    font-family: 'Doto', sans-serif;
    font-weight:1000;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #ffffff;
}


#background-text {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    color: #adadad27;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
    overflow:hidden;
    word-wrap: break-word;
    text-align: justify;
    user-select: none;
}

.main-container {
    border-radius: 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.box {
    background-color: white;
    border-radius: 2px;
    border: 2.5px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.cuadro-1 {
    width: 300px;
    height: 300px;
    position: relative;
    box-shadow: #000000 4px 4px 0px 0px;
}
.cuadro-1::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #000000; 
    pointer-events: none;
    background-image: url(img/img_test.png);
}
.cuadro-2 {
    width: 300px;
    height: 70px;
    font-size: 28px;
    background: none;
    border: none;
    user-select: none;
    pointer-events: none;
}
.bottom-row {
    display: flex;
    gap: 10px;
    width: 360px;
}

.box-small {
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-width: 2px;
}

.socials {
    width: 80px;
    height: 40px;
    font-size: 13px;
    border-width: 2px;
}


button.box {
    font-family: inherit; 
    cursor: pointer; 
    transition:none; 
    padding: 0; 
}


button.box:hover {
    background-color: black;
    color: white;
    text-decoration-line:underline;
    text-decoration: dotted 1px;
    border: 1px dotted #000;
}

.win {
    position: absolute;
    width: 280px;
    min-width: 180px;
    background: #ffffff;
    border: 2px solid #000000;
    box-shadow: black  4px 0px 0px;
    border-radius: 4px;
    overflow: hidden;
    font-weight: 700;
}

.win .title {
    background: #111111;
    color: #ffffff;
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    cursor: grab;
    user-select: none;
    font-weight: bolder;
    font-style: italic;
    
}

.win .title:active { cursor: grabbing; }
.win .controls { display: flex; gap: 6px; }
.win .controls button {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 28px;
    height: 20px;
    cursor: pointer;
    font-weight: 900;
}

.win .controls button:hover {
    background: #000000;
    border: #f4f4f4 1px solid;
    color: #ffffff;
    width: 28px;
    height: 20px;
    cursor: pointer;
    font-weight: 900;
}

.win .content {
    padding: 10px;
    background: #ffffff;
    color: #000000;
    max-height: 320px;
    overflow: auto;
}

.win.focus { box-shadow:black 4px 4px 0px 0px;}
.win a { color: #000000; text-decoration: none; }
.win a:hover {color: #ffffff; text-decoration: underline; background-color: #000; }
.win p { margin: 6px 0; }
