
* {
    margin: 0%;
    padding: 0%;
    font-family: 'josefin Sans', sans-serif;
    box-sizing: border-box;
    color: white;
}
body{
    background-color: rgb(27, 26, 26);
    background-image: url(assignment.jpg);
}

.hero {
    height: 18vh;
    width: 100%;
    background-image: url(assignment.jpg);
    background-size: cover;
    background-position: center;
}

/*  Nav box */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
}

.logo {
    color: white;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}

span {
    color: #f9004d;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover {
    color: #f9004d;
    transition: .4s;
    border-bottom: 5px solid #f9004d;
    padding-bottom: 5px;
}
.btn {
    background-color: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 30px;
    transition: transform .4s;
}

.btn:hover {
    transform: scale(1.2);
}

/* table Section */

.t1{
    border: 10px solid #dab4c0;
    border-radius: 20px;
    margin: 50px;
}
.table{
    font-weight: bold;
    text-align: center;
    font-size: larger;
    display: flex;
    padding: 10px;
    
}
.table_h{
    font-weight: bold;
    text-align: center;
    font-size: larger;
    display: flex;
    padding: 10px;
    
}
.r1{
    background-color:  #f9004d;
    padding-top: 8px;
    height: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;;
    font-size: 20px;
    width: 20%;
}
.ra{
    background-color:yellowgreen ;
    padding-top: 8px;
    height: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 20%;
}
.r2{
    background-color:  #fa4d84;
    font-size: 20px;
    padding-top: 8px;
    height: 40px;
    width: 60%;
}
.rb{
    background-color:rgb(181, 218, 109) ;
    padding-top: 8px;
    height: 40px;
    width: 60%;
}
.r3{
    background-color: #f9004d;;
    font-size: 20px;
    height: 40px;
    border-top-right-radius: 20px;
    padding-top: 8px;
    border-bottom-right-radius: 20px;
    width: 20%;
    text-decoration: underline;
}
.rc{
    background-color:yellowgreen ;
    height: 40px;
    border-top-right-radius: 20px;
    padding-top: 8px;
    border-bottom-right-radius: 20px;
    width: 20%;
    text-decoration: underline;
}
.r1:hover{
    background-color:yellowgreen ;
    transition: .4s;
}
.r2:hover{
    background-color:rgb(181, 218, 109) ;
    transition:.4s;
}
.r3:hover{
    background-color:yellowgreen ;
    transition: .4s;
}

/* Footer Section */
footer {
    position: relative;
    width: 100%;
    height: 400px;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p:nth-child(1) {
    font-size: 30px;
    color: white;
    margin-top: 20px;
    font-weight: bold;
}

footer p:nth-child(2) {
    color: white;
    font-size: 17px;
    width: 500px;
    text-align: center;
    line-height: 26px;
}

.social {
    display: flex;
}

.social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9004d;
    border: 50%;
    margin: 22px 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.social a:hover {
    transform: scale(1, 3);
    transition: .3s;

}

.end {
    position: absolute;
    color: #f9004d;
    bottom: 35px;
    font-size: 14px;
}