@font-face {
    font-family: "OpenSans";
    src: url("/fonts/OpenSans.ttf");
}

body {
    background-color: #222222;
    color: white;
    font-family: "OpenSans";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

.tags {
    color: #1E90FF;
}

.brackets {
    color: #808080;
}

.folders {
    background-color: #2b2a2a;
    color: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 20px;
}

.folders-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.folders-content-option {
    max-width: 20%;
    padding: 0 15px;
    text-align: center;
}

.folders-content-option img{
    max-width: 100%;
    transition: all 1s ease;
}

.folders-content-option img:hover{
    scale: 120%;
    cursor: pointer;
}

.photos-section
{
    width: 100%;
    max-width: 2400px;
}

.photos 
{
    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: center;
}

.photos img
{
    height: auto;

    margin: 10px;

    width: 45%;
}

.socials
{
    display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
}

a 
{
    color: white;
    text-decoration: underline;
}

@media (max-width: 700px) {

    body section {
        width: 100%;
        max-width: 1200px;
    }
    
    
    .aboutMe h1 {
        font-size: 5vw;
        text-align: center;
    }
    
    .aboutMe p {
        font-size: 4vw;
        text-align: center;
    }
    
    .aboutMe img {
        width: 300px;
        height: auto;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }  

    .folders-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .folders-content-option {
        max-width: 50%;
        padding: 0 15px;
        text-align: center;
    }
}

@media (min-width: 701px) and (max-width: 1024px) {

    body section {
        width: 100%;
        max-width: 1200px;
    }
    
    
    .aboutMe h1 {
        font-size: 5vw;
        text-align: center;
    }
    
    .aboutMe p {
        font-size: 4vw;
        text-align: center;
    }
    
    .aboutMe img {
        width: 300px;
        height: auto;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }  
}

@media (min-width: 1025px) and (max-width: 1999px) {
    body section {
        width: 100%;
        max-width: 1200px;
    }
    
    
    .aboutMe {
        display: flex;
        align-items: center;
        background-color: #222;
        padding: 20px;
        border-radius: 10px;
      }
    
    .aboutMe h1 {
        font-size: 38px;
    }
    
    .aboutMe p {
        font-size: 30px;
    }
    
    .aboutMe img {
        width: 350px;
        height: auto;
        border-radius: 50%;
        margin-left: auto;
    }
}

@media (min-width: 2000px) {
    body section {
        width: 70%;
        max-width: 1200px;
    }
    
    
    .aboutMe {
        display: flex;
        align-items: center;
        background-color: #222;
        padding: 20px;
        border-radius: 10px;
      }
    
    .aboutMe h1 {
        font-size: 56px;
    }
    
    .aboutMe p {
        font-size: 48px;
    }
    
    .aboutMe img {
        width: 350px;
        height: auto;
        border-radius: 50%;
        margin-left: 10px;
    }
}

