#slanted-name {
    object-fit: cover;
    margin: 0;
    font-style: italic;
    rotate: -10deg;
    display: inline-block;
    position: relative;
    top: 28px;
    left: -20px;
}

#info-box-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100vh; /* Full height */
    justify-content: center;
    align-items: center;
    z-index: 2;
}

body{
    backdrop-filter: none;
}

button{
    border: none;
    height: 2em;
    margin-top: .5em;
    margin-bottom: .5em;
}

.info-box {
    display: none;
    position: fixed;
    height: 80vh;
    width: 60%;
    background-image: url("velvet.jpg");
    background-size: 300px;
    background-repeat: repeat;
    cursor: pointer;
    border: 10px solid transparent;
    border-image: url("./wood.jpg") 20 round; 
    overflow: auto; 
    padding: 5px;
}

.info-box-content{
    color: black;
    display: grid;
    grid-template-columns: fit-content(300px) 1fr;
    grid-gap: 5px;
}

.info-box-header {
    color: black;
}

.watch-large {
    height: 70vh;
}

.watch-text {
    vertical-align: top;
    margin-top: 0;
    padding-top: 0;
    background-color: #ffffff7a;
}

.watch-image {
    display: inline block;
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding: 0;
}

.watch-box {
    border: 20px solid transparent;
    width: 100%;
    text-align: center;
    align-items: center;
    background-image: url("wood.jpg");
    background-size: 100px;
    background-repeat: repeat;
}

.box-row {
    border: 10px solid;
    border-image: url("wood.jpg") 20 round;
}

.box-column {
    border: 10px solid;
    border-image: url("wood.jpg") 20 round;
    padding: 0;
    margin: 0;
    width: 20%;
}


@media(max-width: 1000px) {
    .watch-box {
        border: 10px solid transparent;
        border-image: url("./wood.jpg") 20 round; 
    }

    .box-row {
        border: 5px solid;
        border-image: url("wood.jpg") 20 round;
    }

    .box-column {
        border: 5px solid;
        border-image:  url("wood.jpg") 20 round;
    }

    #watch-title {
        position: relative;
        right: -20px;
    }

    #slanted-name {
        left: 0;
    }

    .info-box{
        width: 80%;
    }

    .watch-large {
        width: 220px;
        height: auto;
    }
}

@media(max-width: 600px) {
    .watch-large {
        width: 100%;
        height: auto;
    }
    .info-box-content{
        display: block;
    }
}