@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: gray;
}

body {
    background: rgb(26, 41, 79);
}

#main {
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

#godev {
    width: 100%;
    height: fit-content;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 1000px;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(5px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.container .flex{
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.container .flex .about{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container .flex .about p{
    font-size: 23px;
}

.container h2{
    font-size: 40px;
}

.about .socmed{
    display: flex;
    gap: 10px;
}

.about .socmed a{
    font-size: 30px;
}

footer{
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
}

footer i:hover{
    color: red;
}



@media (max-width: 1038px) {
    .container{
        width: 100%;
    }
}

@media (max-width: 706px){
    .container .flex{
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
}