html { margin: 0px; padding: 0px; }

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

button {
    box-sizing: border-box;
    font-family: "IBM Plex Mono", monospace;
    font-size: 2vh;
    position: relative;
    overflow: hidden;
    border: 3px solid #f36864;
    background: none;
    padding: 10px 20px;
    user-select: none;
    transition: all 0.2s linear;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #f36864;
    z-index: -5;
    transition: width 0.3s ease-in-out;
}

button:hover::before {
    width: 100%;
}

button:hover {
    color: #ffffff;
    cursor: pointer;
}

.about-me {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    font-family: "Roboto", sans-serif;
    border: 3px solid #E63462;
    height: fit-content;
    transition: all 0.3s ease;
}

.about-me:hover {
    cursor: pointer;
    background-color: #ffe9f0;
    box-shadow: 12px 12px 12px #0000003b, -10px -10px 10px #ffffff;
}

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

.line {
    display: block;
    background-color: #f36864;
}

@media (max-width: 1000px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .line {
        min-height: 0.2rem;
        min-width: 80%;
    }

    .about-me { margin: 0px 10vw; }
}

@media (min-width: 1001px) {
    .content { flex-direction: row; }
    
    .line { width: 0.2%; }

    .about-me {
        margin: 0px 32.5vw 4vh 32.5vw;
    }
}


.container { padding: 2vw 5vw 2vw 5vw; }

.containerTitle {
    color: #E63462;
    font-weight: bold;
    font-size: 3vh;
}

.containerDesc {
    color: #1a1a1a;
    font-size: 1.75vh;
}