@import url("./main.css");

/* Page-specific styles below */

@media screen and (max-width: 600px) {
    main {
        flex-direction: column;
        width: 90vw;
    }
    
    #rightcolumn{
        width: 100% !important;
    }

    #leftcolumn{
        width: 100% !important;
    }

    .window {
        margin-right: 0 !important;
    }

    #speci{
        display: none;
    }

    .topbar {
        height: fit-content !important;
    }
    
    .statusItem{
        display: flex;
        flex-direction: column;
    }

    .nametag h1{
        font-size: 25px;
    }

    .articleheading img{
        display: none;
    }

    .projectheading img{
        display: none;
    }

    #profile{
        display: none;
    }
}

main {
    display: flex;
    justify-content: center;;
}

marquee {
    width: 100%;
}

#rightcolumn{
    width: 35%;
}

#leftcolumn{
    width: 65%;
}

#yap{
    display: flex;
    flex-direction: column;
    margin: 10px;
}

#aboutme{
    display: flex;
    align-items: center;
    justify-content: center;
}

#profile{
    height: 100px;
    aspect-ratio: 1/1;
    margin-left: 10px;
    border: solid;
    border-color: #7CB0FF;      
}

#qotd{
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.project{
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.projectheading{
    display: flex;
    align-items: center;
}

.projectheading img{
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.article{
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.articleheading{
    display: flex;
    align-items: center;
}

.articleheading img{
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

#muzic{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#muzicinfo{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

#songCover{
    height: 80px;
    aspect-ratio: 1/1;
    border: solid;
    margin-left: 10px ;
    border-color: #7CB0FF;
}

#songinfo{
    display: flex;
    flex-direction: column;
    margin: 10px;
    width: 100%;
}

#muzicstatus{
    margin-left: 5px;
}

#muzicStatus{
    margin: 5px;
    display: flex;
    align-items: center;
}

#muzicStatus img{
    height: 17px;
    aspect-ratio: 1/1;
    margin-left: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spin {
    animation: spin 2s linear infinite;
}

.link{
    display: flex;
    align-items: center;
    margin: 10px;
}

.link img{
    height: 20px;
    width: 20px;
    margin-right: 7px;
}

.fancyjump{
    display: flex;
}

.fancyjump a{
    margin-right: 5px;
}

#terminalwindow{
    height: 10rem;
    overflow-y: auto;
    padding-left: 5px ;
    padding-top: 2px;
}

#terminalinput {
    border: none;
    background: none;
    color: #f3f4f5;
    outline: none;
    width: 100%;
    font-family: 'Tickerbit';
}

#inputLine {
    display: flex;
}
#inputPrefix {
    margin-right: 5px;
}

footer{
    display: flex;
    justify-content: center;
    margin: 10px;
    color: #f3f4f5;
}

#statusWindow{
    margin: 10px;
}
.statusItem{
    display: flex;
    justify-content: space-between;
}

#coolsites{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}

#coolsites marquee{
    width: 100%;
    display: flex;
}

#poems{
    padding: 1rem;
    font-size: 15px;
}

#chat{
    display: flex;
    flex-direction: column;
    height: 200px;
}

#chat-history{
    height: 75%;
}

#chat-input{
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chat-input input{
    width: 95%;
    height: 65%;
    border: 2px solid #7CB0FF;
    color: #f3f4f5;
    background-color: #333;
    outline: none;
    padding: 5px;
    font-family: 'Tickerbit';
}

#chat-input input::placeholder{
    color: #7CB0FF;
    opacity: 1;
}

#chat-history{
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}

.message{
    display: flex;
    width: 95%;
    margin: 0;
}

.name{
    color: #7CB0FF;
}

.msgContent{
    margin-left: 5px;
}