@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #dadada !important;
}
.image{
    background: url('abstract.jpg');
    background-position: center;
    background-size: cover;
}
.main{
    position: absolute;
    width: 100vw;
    height: 100vh;
    font-family: 'Barlow', sans-serif !important;
}
.child{
    height: 70vh;
    min-height: 25rem;
    margin-top: 15vh;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.child div:first-child{
    border-radius: 5px 0 0 5px;
}
.child div:nth-child(2n){
    border-radius: 0 5px 5px 0;
}
h1 {
    font-size: 1.3rem !important;
    color: #47656b;
}
label {
    width: 100%;
    display: inline-block;
    text-align: left;
    font-size: 0.8rem;
}
input {
    background: none;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 0 5px 0;
    border-color: #cccccc;
    border-width: 0 0 1px 0;
}
input:focus-visible{
    border-color: #cccccc;
    border-width: 0 0 1px 0;
    outline: none !important;
}
.icon {
    float: right;
    margin-left: -24px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    display: block;
    background-color: #ffffff;
    color: #47656b;
  }
.icon::before{
    width: 24px;
    height: 24px;
}
button {
    padding: 8px 32px;;
    font-size: 0.8rem !important;
    font-weight: 400;
    color: #ffffff;
    border: none;
    background-color: #47656b;
    border-radius: 25px !important;
    align-items: center;
    transition: all 0.3s ease;
}
button:hover{
    background-color: #66949e;
}
p.success,
p.error, p.hidden {
    color: green;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-align: start;
}
p.error {
    color: orangered;
}
p.hidden{
    opacity: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.project-list{
    list-style: none;
}

.project-list>li>a{
    text-decoration: none;
    color: #536f74;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 0 rgba(36, 75, 84, 0);
}
.project-list>li>a:hover{
    color: #244b54;
    box-shadow: 0 2px 0 rgba(36, 75, 84, 1);
    
}

@media (max-width: 991.98px) { 
    .image{
        height: 50%;
    }
 }
 
 