@font-face{
    font-family: 'Work';
    src: url('Fonts/WorkSans-VariableFont_wght.ttf');
    font-weight: 300;
}
@font-face{
    font-family: 'Work2';
    src: url('Fonts/WorkSans-VariableFont_wght.ttf');
    font-weight: 400;
}
@font-face{
    font-family: 'Allura';
    src: url('Fonts/Allura-Regular.ttf');
}
#top-page{
    height: fit-content;
}
.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;
}
.dream img{
    width: 100%;
    padding-bottom: 5px;
    border-radius: 3px;
}
.container h3{
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-family: 'Work';
}
#footer{
    background-color: #ddadab;
    color: white;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 0.2rem;
    width: 100%;
    margin-top: 3rem;
}
#footer p{
    font-family: 'Work';
}
.btn-about{
    font-family: 'Work';
    font-weight: 0;
    font-size: 1rem;
    color: #fff;
    background-color: #ebaaa8;
    padding: 15px 30px;
    border: solid #ebaaa8 2px;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    border-radius: 1px;
    transition : 1000ms;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    margin-top: 2rem;
    margin-bottom: 2rem;
    }
    .btn-about:hover{
    transition : 1000ms;
    transform : translateY(-0px);
    background-color: #fff;
    color: #ebaaa8;
    border: solid 2px #ebaaa8;
    }
