@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background-image: url(bg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    border-radius: 13px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    max-width: 720px;
}

.pfpcont {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    height: 200px;
}

.pfpcont img {
    width: 200px;
    height: 200px;
    border-radius: 5px;
}

.infocont {
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    text-align: center;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

.project {
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    text-align: center;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

.project img {
    width: 18vw;
    margin: auto;
    border-radius: 5px;
    margin-bottom: 1vh;
}

.textcont {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 8px;
    min-width: 300px;
}

.infocont h1,
.infocont h2 {
    margin: 0;
}

a {
    text-decoration: none;
    color: white;
}