@import url(https://db.onlinewebfonts.com/c/1e6ec96c95301fa73aa1d026f161a269?family=Marzo+W00+Regular);

*{
    padding: 0;
    margin: 0;
    font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.content{
    padding: 50px;
    border: #ffbc66 solid 2px;
    width: 40%;
    margin:  0 auto;
}

.content table{
    margin: 40px 0;
}

.table-header{
    color: #ffbc66;
}

.table-content th{
    color: rgb(158, 156, 154);
}

.content table tr th span{
    color: rgb(158, 156, 154);
    font-size: 10px;
}

.table-header th{
    color: #ffbc66;
    font-size: 26px;
}

.content table tr th{
    height: 30px;
    width: 125px;
}

.content table tr th:first-child{
    text-align: left;
    color: #ffbc66;
}

.content a{
    background-color: #ffbc66;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    transition: .5s ease;
}

.content a:hover{
    background-color: #ffdaa9;
}


/* Computer Version */

@media (min-width: 1100px) {

    .content h1{
        margin-bottom: 28px;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 28px;
    }

    .content h2{
        margin: 50px 0 10px 0;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 24px;
    }
    
    .content p{
        margin-bottom: 28px;
        font-weight: lighter;
        color: rgb(158, 156, 154);
        font-size: 18px;
    }
}


/* Phone Version */

@media (max-width: 1100px) {

    .content{
        padding: 50px;
        border: #ffbc66 solid 2px;
        width: 60%;
        margin:  0 auto;
    }

    .content h1{
        margin-bottom: 28px;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 24px;
    }

    
    .content h2{
        margin: 50px 0 10px 0;
        font-weight: lighter;
        color: #ffbc66;
        font-size: 22px;
    }
    
    .content p{
        margin-bottom: 28px;
        font-weight: lighter;
        color: rgb(158, 156, 154);
        font-size: 18px;
    }

    .content table tr th{
        height: 20px;
        width: 100px;
    }

    .content table tr th{
        font-size: 14px;
        text-wrap: nowrap;
    }
}