@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&display=swap");

body, html {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    color: white;
    background-image: url("background.png");
    font-family: Prompt, Cormorant Garamond, Monospace, Arial;
}

.left {
    width: 45%;
    margin-left: 2.5%;
    height: 95%;
    position: fixed;
    left: 0;
    background-color: rgba(35, 35, 35, 0.4);
    backdrop-filter: blur(25);
    text-align: center;
    border: 3px solid gray;
    border-radius: 25px;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.right {
    width: 45%;
    margin-right: 2.5%;
    height: 95%;
    position: fixed;
    right: 0;
    background-color: rgba(35, 35, 35, 0.4);
    backdrop-filter: blur(25);
    text-align: center;
    border: 1px solid transparent;
    border: 3px solid gray;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.noflex {
    display: block;
    text-align: center;
    width: 90%;
}

.myName {
    margin-top: 50px;
}

.divider {
    height: 100%;
    width: 1%;
    background-color: rgb(35, 35, 35);
    border: 1px solid transparent;
}

p {
    margin: 1px;
}

.skillsheader {
    margin-bottom: 1px;
}

.progressbar-header {
    margin-top: 1px;
    margin-bottom: 1px;
}

.progressbar-python {
    width: 50%;
    margin-left: 25%;
    height: 3%;
    background-color: rgba(40, 45, 45, 0.8);
    border: 1px solid transparent;
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    margin-bottom: 20px;
}

.progressbar-color-python {
    width: 30%;
    height: 100%;
    border-radius: 25px;
    background-color: red;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
}

.progressbar-lua {
    width: 50%;
    margin-left: 25%;
    height: 3%;
    background-color: rgba(40, 45, 45, 0.8);
    border: 1px solid transparent;
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
}

.progressbar-color-lua {
    width: 20%;
    height: 100%;
    border-radius: 25px;
    background-color: blue;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 12px 0px rgba(255,255,255,1);
}

img {
    border-radius: 25px;
}