

@font-face {
    font-family: 'Heebo';
    src: url('Heebo/Heebo-Black.ttf');
    src: url('Heebo/Heebo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Heebo';
    src: url('Heebo/Heebo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

body {
    background-color: orange;
    color: black;
    font-family: Heebo;
    font-size: 20px;
    text-align: center;
    justify-content: center;
    padding: 50px;
    margin: 0px;
    background-image: url(bg.png);
    background-position: top center;
    background-repeat: repeat;
}

.frame{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 5% 90% 5%;
}

.card {
    background-color: white;
    margin-top: 0px;
    /* height: 500px; */
    padding: 0px;
    display: grid;
    grid-template-columns: auto 250px;
    box-shadow: 5px 5px 5px rgb(139, 138, 138);
    width: 100%;
}

.title{
    height: 50px;
    background-color: black;
    color: white;
    font-size: 38px;
    text-align: left;
    vertical-align: middle;
    display: flex;
    width: 275px;
    padding-left: 10px;
    padding-right: 10px;
}

.main{
    /* padding-top: 40px; */
    width: 100%;
    display:grid;
    grid-template-columns: 400px auto;
    font-size: 30px;
}

.info{
    font-size: 18px;
    display: flex;
    color: white;
    text-align: left;
}
