html{
    font-size: 62.5%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    font-size: 1.6rem;
    overflow: visible;
}

.header{
    background-color: rgb(140, 181, 253);
    display: flex;
    height: 8rem;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    padding-left: 4rem;
    position: relative;
}

.headerTitle{
    color: whitesmoke;
    text-transform: uppercase;
    font-size: 400%;
    font-weight: 200;
}

.headerButton{
    text-transform: uppercase;
    background: transparent;
    color: white;
    border: none;
    font-size: 150%;
    letter-spacing: 0.2rem;
}

.headerButton:hover{
    cursor:pointer;
}

.mainNavigation{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all;
}

.mainNavigationList{
    list-style: none;
}

.mainNavigationListItem > a {
    text-decoration: none;
    color: white;
}

.mainNavigationListItem{
    color: white;
    font-size: 300%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.bigFigure{
    width: 100%;
    height: 90vh;
}

.bigFigure > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections{
    width:100%;
    padding: 8rem;
    background: rgb(90, 104, 255);
}

.collectionsTitle, .infoTitle{
    font-size: 350%;
    color:black;
    text-transform: uppercase; 
    font-weight: 400;
    margin-bottom: 4rem;
}

.collectionslist{
    list-style: none;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    /* justify-content: center; */
}

.collectionslistitem{
    width: 50rem;
    height: 70rem;
    background: purple; 
    flex-shrink: 1;
    flex-grow: 1;
}

.collectionslistitem > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info{
    background: rgb(90, 104, 255);
    padding: 4rem;
    display: flex;
    gap: 4rem;
}

.block{
    background: rgb(90, 104, 255);
    width: 40rem;
    flex-shrink: 1;
    flex-grow: 1;
}

.contact {
    width: 38.2rem;
    overflow: hidden;
    margin: 2rem auto;
    padding: 8rem;
    background-color: #fff;
    border-radius: 1.5rem;
}

h2 {
    
    text-align: center;
    color: white;
    padding: 2rem;
}

label {
    color: #08ffd1;
    font-size: 1.7rem;
}
input[type="text"], input[type="email"], input[type="submit"] {
    width: 30rem;
    height: 3rem;
    border: none;
    border-radius: 0.3rem;
    padding-left: 0.8rem;
    
}
textarea {
    width: 25rem;
    height: 10rem;
    border: none;
    border-radius: 0.3rem;
    padding-left: 0.8rem;
    resize: none;
}
input[type="submit"] {
    width: 25rem;
    height: 3rem;
    border: none;
    border-radius: 1.7rem;
    padding-left: 0.7rem;
    color: blue;
    
    
}
span {
    color: white;
    font-size: 1.7rem;
}

footer{
    background-color: rgb(140, 181, 253);
    color: white;
}