
/* Main style */

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

h1,h2,h3,h4,p {
    margin: 0px;
    padding: 0px;
}

.section {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

/* Section 1 specifics */

#section-1 {
    padding: 0px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: linear-gradient(rgb(0, 0, 0),blue);
}

#section-1 #namebox {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 20px;
    text-shadow: #000000 1px 0 10px;
}

#section-1 #andreiplsno{
    font-size: 100px;
}

#section-1 #showcase-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#section-1 #showcase{
    z-index: 1;
    border-radius: 5%;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 50px 0px black;
    width:35vw;
    height: 35vw;
    color:  green;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    #section-1 #andreiplsno {
        font-size: 50px;
    }
}

@media screen and (max-width: 500px) {
    #section-1 #showcase {
        display: none;
    }
}

/* Section 2 specifics */

#section-2 {
    background-image: linear-gradient(blue,black);
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    justify-content: center;
}

#section-2 .explain {
    text-shadow: #000000 1px 0 10px;
    display: grid;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#section-2 .explain h1 {
    font-size: 40px
}

#section-2 .explain p {
    font-size: 40px;
    transition: all 0.25s;
}

#section-2 .explain p:hover {
    font-size: 50px;
}

#section-2 .explain p:hover{
    color: rgb(176, 176, 176);
}

/* Section 3 specifics */

#section-3 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#section-3 #projectHolder {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 10px;
    width: 90vw;
    gap: 10px;
}

#section-3 #projectHolder #project {
    text-align: center;
    height: 100px;
    background-color: black;
    border-radius: 15px;
    padding: 20px;
    border: solid;
    border-width: 1px;
}

#section-3 #projectHolder #project button {
    font-size: large;
    border: none;
    background-color: white;
    padding: 5px;
    transition: all 0.25s;
    margin-top: 10px;
}

#section-3 #projectHolder #project button:hover {
    font-size: larger;
}

#section-3 #projectHolder #project button:active {
    opacity: 0.25;
}

/* Footer and stuff */
#footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #000000;
    z-index: 2;
    margin: 10px;
    padding: 10px;
    text-align: center;

    border: solid;
    border-color: white;
    border-radius: 15px;
    border-width: 1px;
}

#cat {
    transition: all 0.25s ease-out;
    width: 50px;
    height: 50px;
    content: url("svgs/cat1.svg");
}

#cat:hover {
    cursor: grab;
    width: 100px;
    height: 100px;
    content: url("svgs/cat2.svg");
}