@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
html, body {
    height: 100%;
}
.news{
    position: absolute;
    height: 680px;
    top: 63px;
    width: 100%;
    background-color: #F1F1F1;
    border-top: black solid 1px;
    border-bottom: black solid 1px;
}
.welcome{
    position: relative;
    top: 0;
    padding: 25px;
}
.news-items{
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.welcome-header{
    font-size: 50px;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin-bottom: 100px;
}
.news-card{
    height: 150px;
    font-size: 25px;
    margin: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
}
.btn{
    font-size: 25px;
}
.program{
    margin: 0 auto;
}
@media screen and (max-width:940px){
    .news{
        height: 200vh;
    }
    .news-items{
        height: 100vh;
    }
    .news-card{
        height: 400px;
    }
}