@font-face {
    font-family: NoRules;
    src: url(fonts/SANoRules.otf);
}
@font-face {
    font-family: RobotoFlex;
    src: url(fonts/RobotoFlex-Regular.ttf);
}
@font-face {
    font-family: CircularBook;
    src: url(fonts/circular-book.ttf);
}
body {
    font-family: RobotoFlex;
    color: black;
    display: flex;
    margin: 0;
    flex-direction: column;
}
a{ 
    text-decoration: none;
    color: #282020;

}
.title{
    font-family: NoRules, Helvetica, sans-serif;
    font-weight: 900;
    color: rgb(0, 0, 0);
    font-size: 45px;
}
/* header */
.header{
    background-color : rgb(40, 40, 40);
    font-size: 26px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
    
}
    .header .title{
        color: white;
    }
    .header img{
        width: 300px;
        height: 100px;
    }
    .header ul{
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    .header .link{
        text-align: center;
    }

/* content-one */
.content-one{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 32px 50px 32px;
    background-color: rgb(40, 40, 40);
    margin-bottom: 16px;
    gap: 24px;
    color: white;
}
    .aboutme{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        flex-grow: 0;
        flex-shrink: 1;
        min-width: 110px;
        min-height: 200px;
        flex-basis: 300px;
        padding: 16px;
    }

        .aboutme button{
            width: 180px;
            background-color: rgb(243, 239, 239);
            color: black;
            border: hidden;
            padding: 5px;
            border-radius: 12px;
            box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        }
        .aboutme h2{
            font-size: 48px;
            font-weight: extra-bold;
            padding: 0px;
            margin: 0px;
        }
        h2.title{
            color: white;
        }
    .photo{
    display: flex;
    flex-direction: column;
    flex-basis: 300px;
    }
        .photo img{
            display: flex;
            flex-shrink: 1;
            flex-grow: 1;
            height: 352px;
            border-radius: 12px 12px 12px 12px; 
        }

/* content two */
.content-two{
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}
    h3{
        display: flex;
        justify-content: center;
        font-size: 30px;
        font-weight: extra-bold;
        margin: 0px;
        margin-bottom: 16px;
        
    }
    .crew{
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 300px;
        flex-basis: 300px;
        margin-bottom: 16px;
    }
    .crewcontainer { 
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: auto;
    }
    .content-two ul{
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0px;
        
    }
    .content-two .info{
        display: flex;
        flex-direction: column;
        flex-shrink: 1;
        flex-grow: 1;
        }
    .content-two img{
        height: 200px;
        width: 200px;
        border-radius: 25px;
        border: 2px rgb(255, 255, 255);
    }
    .name{
        font-size: 28px;
        font-weight: bolder;
        margin: 0;
        padding: 5px;
    }

/* footer */
.footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
form{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-right: 30%;
    margin-left: 30%;
    padding: 16px;
}
label{
    font-weight: 500;
}
input{
    display: block;
    width: 97%; 
    height: 2.5rem;
    margin-top: 4px; 
}
.sign-name{
    flex-grow: 1;
    flex-basis: 120px;
}
.email{
    flex-grow: 3;
    flex-basis: 170px;
}
.submit{
    flex-grow: 1;
    flex-basis:100%;
    height: 2.85rem;
}
/*tag*/
.tag{
    
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.tag ul{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}
.tag img{
    height: 50px;
    width: 50px;
}
#teo{
    text-decoration: underline;
}